|
@ -23,6 +23,8 @@ public partial class BasedataApplicationAutoMapperProfile : Profile |
|
|
CreateMap<Customer, CustomerImportInput>() |
|
|
CreateMap<Customer, CustomerImportInput>() |
|
|
.Ignore(x => x.ReportStatus) |
|
|
.Ignore(x => x.ReportStatus) |
|
|
.Ignore(x => x.ReportReason); |
|
|
.Ignore(x => x.ReportReason); |
|
|
|
|
|
CreateMap<CustomerEditInput, Customer>() |
|
|
|
|
|
.IgnoreAuditedObjectProperties() |
|
|
|
|
|
.Ignore(x => x.ConcurrencyStamp).Ignore(x => x.Id); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|