using AutoMapper; using Kurs.Platform.Identity.Dto; using Kurs.Platform.OrganizationUnits; using Kurs.Platform.Tenants; using Volo.Abp.Identity; using Volo.Abp.TenantManagement; namespace Kurs.Platform.Identity; public class IdentityAutoMapperProfile : Profile { public IdentityAutoMapperProfile() { CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap().ForMember(dest => dest.IsAssigned, opt => opt.Ignore()); } }