S-18
parent
48f386546e
commit
8a174711f4
|
@ -503,6 +503,7 @@ namespace IRaCIS.Core.Application.Service
|
|||
|
||||
SubjectId = x.SubjectId,
|
||||
IsCRCConfirm = x.IsCRCConfirm,
|
||||
VisitBlindName=x.SubjectVisit.BlindName,
|
||||
LatestScanDate = x.SubjectVisit.LatestScanDate,
|
||||
ReadingSetType = x.ReadingSetType,
|
||||
IsPMConfirm = x.IsPMConfirm,
|
||||
|
|
|
@ -252,6 +252,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// </summary>
|
||||
public string ModuleName { get; set; }
|
||||
|
||||
public string VisitBlindName { get; set; }
|
||||
|
||||
public bool IsPMConfirm { get; set; }
|
||||
|
||||
public ReadingSetType ReadingSetType { get; set; }
|
||||
|
@ -272,8 +274,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// </summary>
|
||||
public DateTime? LatestScanDate { get; set; }
|
||||
|
||||
public List<string> ClinicalNameList
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.ClinicalFormList.Select(x => x.ClinicalDataSetName).Distinct().ToList()
|
||||
}
|
||||
}
|
||||
|
||||
public List<GetCRCBeConfirmListOutDto> ClinicalFormList { get; set; }
|
||||
|
||||
public List<GetCRCBeConfirmListOutDto> ClinicalFormList { get; set; }
|
||||
|
||||
public int FormCount
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue