diff --git a/IRaCIS.Core.Application/Service/ImageAndDoc/DTO/DownloadAndUploadDTO.cs b/IRaCIS.Core.Application/Service/ImageAndDoc/DTO/DownloadAndUploadDTO.cs index 3124f5d84..6e5748018 100644 --- a/IRaCIS.Core.Application/Service/ImageAndDoc/DTO/DownloadAndUploadDTO.cs +++ b/IRaCIS.Core.Application/Service/ImageAndDoc/DTO/DownloadAndUploadDTO.cs @@ -102,6 +102,8 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc.DTO public string BodyPartForEdit { get; set; } + public string BodyPartForEditOther { get; set; } + public DateTime? StudyTime { get; set; } public string Modalities { get; set; } @@ -126,6 +128,8 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc.DTO public string BodyPart { get; set; } + public string BodyPartForEditOther { get; set; } + public string Modality { get; set; } public DateTime ImageDate { get; set; } diff --git a/IRaCIS.Core.Application/Service/ImageAndDoc/DownloadAndUploadService.cs b/IRaCIS.Core.Application/Service/ImageAndDoc/DownloadAndUploadService.cs index d858c96f1..cf8a37980 100644 --- a/IRaCIS.Core.Application/Service/ImageAndDoc/DownloadAndUploadService.cs +++ b/IRaCIS.Core.Application/Service/ImageAndDoc/DownloadAndUploadService.cs @@ -190,6 +190,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc ModalityForEdit = t.ModalityForEdit, BodyPartExamined = t.BodyPartExamined, BodyPartForEdit = t.BodyPartForEdit, + BodyPartForEditOther = t.BodyPartForEditOther, StudyCode = t.StudyCode, StudyTime = t.StudyTime, @@ -209,6 +210,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc ModalityForEdit = t.ModalityForEdit, BodyPartExamined = t.BodyPartExamined, BodyPartForEdit = t.BodyPartForEdit, + BodyPartForEditOther = t.BodyPartForEditOther, StudyCode = t.StudyCode, StudyTime = t.StudyTime, @@ -734,6 +736,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc Description = ns.Description, ImageDate = ns.ImageDate, BodyPart = ns.BodyPart, + BodyPartForEditOther=ns.BodyPartForEditOther, FileCount = ns.FileCount, Modality = ns.Modality, StudyCode = ns.StudyCode,