S-18
parent
0840ac2c8b
commit
5bb90e6f15
|
@ -503,6 +503,7 @@ namespace IRaCIS.Core.Application.Service
|
||||||
|
|
||||||
SubjectId = x.SubjectId,
|
SubjectId = x.SubjectId,
|
||||||
IsCRCConfirm = x.IsCRCConfirm,
|
IsCRCConfirm = x.IsCRCConfirm,
|
||||||
|
VisitBlindName=x.SubjectVisit.BlindName,
|
||||||
LatestScanDate = x.SubjectVisit.LatestScanDate,
|
LatestScanDate = x.SubjectVisit.LatestScanDate,
|
||||||
ReadingSetType = x.ReadingSetType,
|
ReadingSetType = x.ReadingSetType,
|
||||||
IsPMConfirm = x.IsPMConfirm,
|
IsPMConfirm = x.IsPMConfirm,
|
||||||
|
|
|
@ -252,6 +252,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string ModuleName { get; set; }
|
public string ModuleName { get; set; }
|
||||||
|
|
||||||
|
public string VisitBlindName { get; set; }
|
||||||
|
|
||||||
public bool IsPMConfirm { get; set; }
|
public bool IsPMConfirm { get; set; }
|
||||||
|
|
||||||
public ReadingSetType ReadingSetType { get; set; }
|
public ReadingSetType ReadingSetType { get; set; }
|
||||||
|
@ -272,8 +274,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public DateTime? LatestScanDate { get; set; }
|
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
|
public int FormCount
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue