42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
using Face.Domain.Entities;
|
|
using Face.Domain.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Face.Services.Manager
|
|
{
|
|
public class OperatorOperate
|
|
{
|
|
|
|
//public static ReturnResult<object> OperatorOperates(string Opname, List<UserInfo> opList)
|
|
//{
|
|
// ReturnResult<object> result = new ReturnResult<object>();
|
|
// try
|
|
// {
|
|
// var project = opList.SingleOrDefault(x => x.Uid == Opname);
|
|
// if (project == null)
|
|
// {
|
|
// result.Message = "无效";
|
|
// return result;
|
|
// }
|
|
// var OpModel = new UserInfo()
|
|
// {
|
|
// //Operatorid = project.Id,
|
|
// //name = project.Uid,
|
|
|
|
// };
|
|
|
|
// }
|
|
// catch (System.Exception)
|
|
// {
|
|
|
|
// throw;
|
|
// }
|
|
// return null;
|
|
//}
|
|
}
|
|
}
|