IRC_NewDev
parent
ebdec8dd62
commit
381e7b5046
|
@ -209,6 +209,9 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
public Guid CTSeriesId { get; set; }
|
||||
public Guid PTSeriesId { get; set; }
|
||||
|
||||
|
||||
public Guid StudyId { get; set; }
|
||||
|
||||
public Guid? SubjectVisitId { get; set; }
|
||||
|
||||
|
||||
|
|
|
@ -451,7 +451,9 @@ namespace IRaCIS.Core.Application.Services
|
|||
foreach (var item in result)
|
||||
{
|
||||
|
||||
item.StudyInfoList = studyList.Where(x => x.SubjectVisitId == item.SubjectVisitId).ToList();
|
||||
item.StudyId = ptseriesLists.Where(x => x.Id == item.PTSeriesId).Select(x => x.StudyId).FirstOrDefault();
|
||||
|
||||
item.StudyInfoList = studyList.Where(x => x.SubjectVisitId == item.SubjectVisitId).ToList();
|
||||
|
||||
foreach (var study in item.StudyInfoList)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue