using AutoMapper; using Elight.Entity.APPDto.Lawyer; using Elight.Entity.AppMode.Lawyer; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Elight.Entity { public class AuthManageProfile : Profile { public AuthManageProfile() { CreateMap().ReverseMap(); CreateMap().ReverseMap(); CreateMap().ReverseMap(); CreateMap().ReverseMap().ForAllMembers(opt => { opt.UseDestinationValue(); opt.Condition((src, dest, srcm, destm) => srcm != null); }); CreateMap().ReverseMap(); CreateMap().ReverseMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); //用户管理 CreateMap(); } } }