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 OperatorOperates(string Opname, List opList) //{ // ReturnResult result = new ReturnResult(); // 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; //} } }