|
@@ -0,0 +1,334 @@
|
|
|
+using VitalService.Entities;
|
|
|
+using AutoMapper;
|
|
|
+using WingInterfaceLibrary.Interface;
|
|
|
+using WingInterfaceLibrary.DTO.Vital;
|
|
|
+using WingInterfaceLibrary.Request.Vital;
|
|
|
+using WingInterfaceLibrary.Request.DBVitalRequest;
|
|
|
+using WingInterfaceLibrary.Request;
|
|
|
+namespace VitalServer
|
|
|
+{
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public class DBAutoMapperProfile : Profile
|
|
|
+ {
|
|
|
+ public DBAutoMapperProfile()
|
|
|
+ {
|
|
|
+ CreateMap<TokenDTO, TokenEntity>().ReverseMap();
|
|
|
+ CreateMap<CompletionRecordDTO, CompletionRecordEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CompletionRecordPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ContractRecordDTO, ContractRecordEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ContractRecordPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ContractTemplateDTO, ContractTemplateEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ContractTemplatePageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateCompletionRecordDBRequest, CompletionRecordEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateCompletionRecordRequest, CreateCompletionRecordDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateContractRecordDBRequest, ContractRecordEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateContractRecordRequest, CreateContractRecordDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateContractTemplateDBRequest, ContractTemplateEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateContractTemplateRequest, CreateContractTemplateDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateDeviceDBRequest, DeviceEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateDeviceRequest, CreateDeviceDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateDiagnosisDBRequest, DiagnosisEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateDiagnosisRequest, CreateDiagnosisDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateDictionaryDBRequest, DictionaryEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateDictionaryRequest, CreateDictionaryDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateDynamicTypeDBRequest, DynamicTypeEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateDynamicTypeRequest, CreateDynamicTypeDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateExamDBRequest, ExamEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateExamRequest, CreateExamDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateFollowUpDBRequest, FollowUpEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateFollowUpRequest, CreateFollowUpDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateLabelDBRequest, LabelEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateLabelRequest, CreateLabelDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateAnalyzeConfigDBRequest, AnalyzeConfigEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateAnalyzeConfigRequest, CreateAnalyzeConfigDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateNotificationDBRequest, NotificationEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateNotificationRequest, CreateNotificationDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateOperationLogDBRequest, OperationLogEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateOperationLogRequest, CreateOperationLogDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateOrganizationDBRequest, OrganizationEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateOrganizationRequest, CreateOrganizationDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreatePatientDBRequest, PatientEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreatePatientExtensionDBRequest, PatientExtensionEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreatePatientExtensionRequest, CreatePatientExtensionDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreatePatientRequest, CreatePatientDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreatePeripheralDeviceDBRequest, PeripheralDeviceEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreatePeripheralDeviceRequest, CreatePeripheralDeviceDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateReportDBRequest, ReportEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateReportRequest, CreateReportDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateResidenceDBRequest, ResidenceEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateResidenceRequest, CreateResidenceDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateRoleDBRequest, RoleEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateRoleRequest, CreateRoleDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateServiceItemDBRequest, ServiceItemEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateServiceItemRequest, CreateServiceItemDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateServicePackDBRequest, ServicePackEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateServicePackRequest, CreateServicePackDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateStatisticDBRequest, StatisticEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateStatisticRequest, CreateStatisticDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateSystemSettingDBRequest, SystemSettingEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateSystemSettingRequest, CreateSystemSettingDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateTeamDBRequest, TeamEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateTeamRegionDBRequest, TeamRegionEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateTeamRegionRequest, CreateTeamRegionDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateTeamRequest, CreateTeamDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateTemplateDBRequest, TemplateEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateTemplateRequest, CreateTemplateDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateTownDBRequest, TownEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateTownRequest, CreateTownDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateUpgradeDBRequest, UpgradeEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateUpgradeRequest, CreateUpgradeDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateUserDBRequest, UserEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateUserFeatureDBRequest, UserFeatureEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateUserFeatureRequest, CreateUserFeatureDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateUserPasswordDBRequest, UserPasswordEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateUserPasswordRequest, CreateUserPasswordDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateUserRequest, CreateUserDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<DeviceDTO, DeviceEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<DevicePageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<DiagnosisDTO, DiagnosisEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<DiagnosisPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<DictionaryDTO, DictionaryEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<DictionaryPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<DynamicTypeDTO, DynamicTypeEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<DynamicTypePageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ExamDTO, ExamEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ExamPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<FollowUpDTO, FollowUpEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<FollowUpPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetCompletionRecordByKeyRequest, GetCompletionRecordByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetCompletionRecordListRequest, GetCompletionRecordListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetCompletionRecordRequest, GetCompletionRecordDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetContractRecordByKeyRequest, GetContractRecordByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetContractRecordListRequest, GetContractRecordListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetContractRecordRequest, GetContractRecordDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetContractTemplateByKeyRequest, GetContractTemplateByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetContractTemplateListRequest, GetContractTemplateListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetContractTemplateRequest, GetContractTemplateDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetDeviceRequest, GetDeviceDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetDiagnosisByKeyRequest, GetDiagnosisByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetDiagnosisListRequest, GetDiagnosisListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetDiagnosisRequest, GetDiagnosisDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetDictionaryByKeyRequest, GetDictionaryByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetDictionaryListRequest, GetDictionaryListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetDictionaryRequest, GetDictionaryDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetDynamicTypeByKeyRequest, GetDynamicTypeByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetDynamicTypeListRequest, GetDynamicTypeListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetDynamicTypeRequest, GetDynamicTypeDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetExamByKeyRequest, GetExamByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetExamListRequest, GetExamListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetExamRequest, GetExamDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetFollowUpByKeyRequest, GetFollowUpByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetFollowUpListRequest, GetFollowUpListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetFollowUpRequest, GetFollowUpDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetLabelByKeyRequest, GetLabelByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetLabelListRequest, GetLabelListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetLabelRequest, GetLabelDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetAnalyzeConfigByKeyRequest, GetAnalyzeConfigByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetAnalyzeConfigListRequest, GetAnalyzeConfigListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetAnalyzeConfigRequest, GetAnalyzeConfigDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetNotificationRequest, GetNotificationDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetOperationLogByKeyRequest, GetOperationLogByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetOperationLogListRequest, GetOperationLogListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetOperationLogRequest, GetOperationLogDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetOrganizationByKeyRequest, GetOrganizationByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetOrganizationListRequest, GetOrganizationListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetOrganizationRequest, GetOrganizationDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetPatientByKeyRequest, GetPatientByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetPatientExtensionListRequest, GetPatientExtensionListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetPatientExtensionRequest, GetPatientExtensionDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetPatientListRequest, GetPatientListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetPatientRequest, GetPatientDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetReportByKeyRequest, GetReportByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetReportListRequest, GetReportListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetReportRequest, GetReportDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetResidenceByKeyRequest, GetResidenceByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetResidenceListRequest, GetResidenceListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetResidenceRequest, GetResidenceDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetRoleByKeyRequest, GetRoleByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetRoleListRequest, GetRoleListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetRoleRequest, GetRoleDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetServiceItemListRequest, GetServiceItemListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetServiceItemRequest, GetServiceItemDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetServicePackRequest, GetServicePackDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetStatisticByKeyRequest, GetStatisticByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetStatisticListRequest, GetStatisticListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetStatisticRequest, GetStatisticDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetSystemSettingByKeyRequest, GetSystemSettingByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetSystemSettingListRequest, GetSystemSettingListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetSystemSettingRequest, GetSystemSettingDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetTeamByKeyRequest, GetTeamByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetTeamListRequest, GetTeamListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetTeamRegionByKeyRequest, GetTeamRegionByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetTeamRegionListRequest, GetTeamRegionListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetTeamRegionRequest, GetTeamRegionDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetTeamRequest, GetTeamDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetTemplateByKeyRequest, GetTemplateByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetTemplateListRequest, GetTemplateListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetTemplateRequest, GetTemplateDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetTownByKeyRequest, GetTownByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetTownListRequest, GetTownListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetTownRequest, GetTownDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetUpgradeRequest, GetUpgradeDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetUserByKeyRequest, GetUserByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetUserFeatureByKeyRequest, GetUserFeatureByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetUserFeatureListRequest, GetUserFeatureListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetUserFeatureRequest, GetUserFeatureDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetUserListRequest, GetUserListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetUserPasswordByKeyRequest, GetUserPasswordByKeyDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetUserPasswordListRequest, GetUserPasswordListDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetUserPasswordRequest, GetUserPasswordDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<GetUserRequest, GetUserDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<LabelDTO, LabelEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<LabelPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<AnalyzeConfigDTO, AnalyzeConfigEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<AnalyzeConfigPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<NotificationDTO, NotificationEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<NotificationPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<OperationLogDTO, OperationLogEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<OperationLogPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<OrganizationDTO, OrganizationEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<OrganizationPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<CompletionRecordDTO>, PageCollection<CompletionRecordEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<ContractRecordDTO>, PageCollection<ContractRecordEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<ContractTemplateDTO>, PageCollection<ContractTemplateEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<DeviceDTO>, PageCollection<DeviceEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<DiagnosisDTO>, PageCollection<DiagnosisEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<DictionaryDTO>, PageCollection<DictionaryEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<DynamicTypeDTO>, PageCollection<DynamicTypeEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<ExamDTO>, PageCollection<ExamEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<FollowUpDTO>, PageCollection<FollowUpEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<LabelDTO>, PageCollection<LabelEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<AnalyzeConfigDTO>, PageCollection<AnalyzeConfigEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<NotificationDTO>, PageCollection<NotificationEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<OperationLogDTO>, PageCollection<OperationLogEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<OrganizationDTO>, PageCollection<OrganizationEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<PatientDTO>, PageCollection<PatientEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<PatientExtensionDTO>, PageCollection<PatientExtensionEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<PeripheralDeviceDTO>, PageCollection<PeripheralDeviceEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<ReportDTO>, PageCollection<ReportEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<ResidenceDTO>, PageCollection<ResidenceEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<RoleDTO>, PageCollection<RoleEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<ScheduleDTO>, PageCollection<ScheduleEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<ServiceItemDTO>, PageCollection<ServiceItemEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<ServicePackDTO>, PageCollection<ServicePackEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<StatisticDTO>, PageCollection<StatisticEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<SystemSettingDTO>, PageCollection<SystemSettingEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<TeamDTO>, PageCollection<TeamEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<TeamRegionDTO>, PageCollection<TeamRegionEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<TemplateDTO>, PageCollection<TemplateEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<TownDTO>, PageCollection<TownEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<UpgradeDTO>, PageCollection<UpgradeEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<UserDTO>, PageCollection<UserEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<UserFeatureDTO>, PageCollection<UserFeatureEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PageCollection<UserPasswordDTO>, PageCollection<UserPasswordEntity>>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PatientDTO, PatientEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PatientExtensionDTO, PatientExtensionEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PatientExtensionPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PatientPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<PeripheralDeviceDTO, PeripheralDeviceEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveCompletionRecordRequest, RemoveCompletionRecordDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveContractRecordRequest, RemoveContractRecordDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveContractTemplateRequest, RemoveContractTemplateDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveDeviceRequest, RemoveDeviceDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveDiagnosisRequest, RemoveDiagnosisDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveDictionaryRequest, RemoveDictionaryDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveDynamicTypeRequest, RemoveDynamicTypeDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveExamRequest, RemoveExamDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveFollowUpRequest, RemoveFollowUpDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveLabelRequest, RemoveLabelDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveAnalyzeConfigRequest, RemoveAnalyzeConfigDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveOperationLogRequest, RemoveOperationLogDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveOrganizationRequest, RemoveOrganizationDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemovePatientExtensionRequest, RemovePatientExtensionDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemovePatientRequest, RemovePatientDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemovePeripheralDeviceRequest, RemovePeripheralDeviceDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveReportRequest, RemoveReportDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveResidenceRequest, RemoveResidenceDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveRoleRequest, RemoveRoleDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveStatisticRequest, RemoveStatisticDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveSystemSettingRequest, RemoveSystemSettingDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveTeamRegionRequest, RemoveTeamRegionDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveTeamRequest, RemoveTeamDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveTemplateRequest, RemoveTemplateDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveTownRequest, RemoveTownDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveUserFeatureRequest, RemoveUserFeatureDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveUserPasswordRequest, RemoveUserPasswordDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RemoveUserRequest, RemoveUserDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ReportDTO, ReportEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ReportPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ResidenceDTO, ResidenceEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ResidencePageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RoleDTO, RoleEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<RolePageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ScheduleDTO, ScheduleEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ServiceItemDTO, ServiceItemEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ServicePackDTO, ServicePackEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ServicePackPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<StatisticDTO, StatisticEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<StatisticPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<SystemSettingDTO, SystemSettingEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<SystemSettingPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<TeamDTO, TeamEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<TeamPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<TeamRegionDTO, TeamRegionEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<TeamRegionPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<TemplateDTO, TemplateEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<TemplatePageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<TownDTO, TownEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<TownPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateCompletionRecordRequest, UpdateCompletionRecordDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateContractRecordRequest, UpdateContractRecordDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateContractTemplateRequest, UpdateContractTemplateDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateDeviceRequest, UpdateDeviceDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateDiagnosisRequest, UpdateDiagnosisDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateDictionaryRequest, UpdateDictionaryDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateDynamicTypeRequest, UpdateDynamicTypeDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateExamRequest, UpdateExamDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateFollowUpRequest, UpdateFollowUpDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateLabelRequest, UpdateLabelDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateAnalyzeConfigRequest, UpdateAnalyzeConfigDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateOperationLogRequest, UpdateOperationLogDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateOrganizationRequest, UpdateOrganizationDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdatePatientExtensionRequest, UpdatePatientExtensionDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdatePatientRequest, UpdatePatientDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateReportRequest, UpdateReportDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateResidenceRequest, UpdateResidenceDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateRoleRequest, UpdateRoleDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateServiceItemRequest, UpdateServiceItemDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateServicePackRequest, UpdateServicePackDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateStatisticRequest, UpdateStatisticDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateSystemSettingRequest, UpdateSystemSettingDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateTeamRegionRequest, UpdateTeamRegionDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateTeamRequest, UpdateTeamDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateTemplateRequest, UpdateTemplateDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateTownRequest, UpdateTownDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateUpgradeRequest, UpdateUpgradeDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateUserFeatureRequest, UpdateUserFeatureDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateUserPasswordRequest, UpdateUserPasswordDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpdateUserRequest, UpdateUserDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpgradeDTO, UpgradeEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UpgradePageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UserDTO, UserEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UserFeatureDTO, UserFeatureEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UserFeaturePageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UserPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UserPasswordDTO, UserPasswordEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<UserPasswordPageRequest, DBPageRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ CreateMap<UpgradeDTO, UpgradeEntity>().ReverseMap().ForMember(opt=> opt.Version, dest => dest.Ignore()).ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<CreateUpgradeDBRequest, UpgradeEntity>().ReverseMap().ForMember(opt=> opt.Version, dest => dest.Ignore()).ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<OrganizationTreeDTO, OrganizationEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<TeamBaseDTO, TeamEntity>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<DBLog, LogEntry>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ExamDTO, ExamRecordDTO>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ExamEntity, ExamRecordDataDTO>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<ContractRecordDTO, ContractRecordEntity>().ReverseMap().ForMember(opt => opt.ServicePacks, dest => dest.Ignore()).ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<SyncPatientAndDiagnosisDataDBRequest, CreatePatientDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ CreateMap<SyncPatientAndDiagnosisDataDBRequest, SubmitDiagnosisDBRequest>().ReverseMap().ForAllOtherMembers(opt => opt.AllowNull());
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|