|
|
@ -49,6 +49,10 @@ using Shentun.Peis.RegisterCheckItems; |
|
|
using Shentun.Peis.RegisterChecks; |
|
|
using Shentun.Peis.RegisterChecks; |
|
|
using Shentun.Peis.RegisterCheckSuggestions; |
|
|
using Shentun.Peis.RegisterCheckSuggestions; |
|
|
using Shentun.Peis.RegisterCheckSummarys; |
|
|
using Shentun.Peis.RegisterCheckSummarys; |
|
|
|
|
|
using Shentun.Peis.ReportFormats; |
|
|
|
|
|
using Shentun.Peis.ReportFormatTemplates; |
|
|
|
|
|
using Shentun.Peis.ReportPrinters; |
|
|
|
|
|
using Shentun.Peis.Reports; |
|
|
using Shentun.Peis.ResultStatuses; |
|
|
using Shentun.Peis.ResultStatuses; |
|
|
using Shentun.Peis.SampleContainers; |
|
|
using Shentun.Peis.SampleContainers; |
|
|
using Shentun.Peis.SampleGroupDetails; |
|
|
using Shentun.Peis.SampleGroupDetails; |
|
|
@ -377,5 +381,23 @@ public class PeisApplicationAutoMapperProfile : Profile |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CreateMap<HorizontalComparisonListEntity, HorizontalComparisonListDto>(); |
|
|
CreateMap<HorizontalComparisonListEntity, HorizontalComparisonListDto>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CreateMap<Report, ReportDto>(); |
|
|
|
|
|
CreateMap<CreateReportDto, Report>(); |
|
|
|
|
|
CreateMap<UpdateReportDto, Report>(); |
|
|
|
|
|
|
|
|
|
|
|
CreateMap<ReportFormat, ReportFormatDto>(); |
|
|
|
|
|
CreateMap<CreateReportFormatDto, ReportFormat>(); |
|
|
|
|
|
CreateMap<UpdateReportFormatDto, ReportFormat>(); |
|
|
|
|
|
|
|
|
|
|
|
CreateMap<ReportFormatTemplate, ReportFormatTemplateDto>(); |
|
|
|
|
|
CreateMap<CreateReportFormatTemplateDto, ReportFormatTemplate>(); |
|
|
|
|
|
CreateMap<UpdateReportFormatTemplateDto, ReportFormatTemplate>(); |
|
|
|
|
|
|
|
|
|
|
|
CreateMap<ReportPrinter, ReportPrinterDto>(); |
|
|
|
|
|
CreateMap<CreateReportPrinterDto, ReportPrinter>(); |
|
|
|
|
|
CreateMap<UpdateReportPrinterDto, ReportPrinter>(); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |