Compare commits
No commits in common. "8d67a3be5f83e6fdb265a20890efe1046e0e331a" and "d2a9f478e465a50014b15be1fccbe8f90d4a0be1" have entirely different histories.
8d67a3be5f
...
d2a9f478e4
|
@ -64,8 +64,6 @@ namespace IRaCIS.Core.Application.Contracts.Dicom.DTO
|
|||
|
||||
public Guid? StudyId { get; set; }
|
||||
public Guid? InstanceId { get; set; }
|
||||
|
||||
public int? NumberOfFrames { get; set; }
|
||||
}
|
||||
public class InstanceBasicInfo
|
||||
{
|
||||
|
|
|
@ -718,7 +718,7 @@ namespace IRaCIS.Application.Services
|
|||
{ClinicalLevel.ImageRead,2 },
|
||||
{ClinicalLevel.OncologyRead,3 },
|
||||
{ClinicalLevel.Subject,4 },
|
||||
{ClinicalLevel.Study,5 },
|
||||
{ClinicalLevel.Study,5 },
|
||||
};
|
||||
|
||||
result = result.OrderBy(x => keys[x.ClinicalDataLevel]).ToList();
|
||||
|
|
|
@ -511,8 +511,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// CreateUserId
|
||||
/// </summary>
|
||||
public Guid CreateUserId { get; set; }
|
||||
|
||||
public int? NumberOfFrames { get; set; }
|
||||
}
|
||||
|
||||
public class GetManualListInDto
|
||||
|
|
|
@ -584,7 +584,6 @@ namespace IRaCIS.Core.Application.Services
|
|||
SeriesId = x.SeriesId,
|
||||
StudyId = x.StudyId,
|
||||
InstanceId = x.InstanceId,
|
||||
NumberOfFrames=x.NumberOfFrames,
|
||||
}).ToListAsync();
|
||||
|
||||
|
||||
|
@ -596,7 +595,6 @@ namespace IRaCIS.Core.Application.Services
|
|||
SeriesId = x.SeriesId,
|
||||
StudyId = x.StudyId,
|
||||
InstanceId = x.InstanceId,
|
||||
NumberOfFrames = x.NumberOfFrames,
|
||||
}).ToListAsync();
|
||||
|
||||
rowInfoList.AddRange(customoList);
|
||||
|
|
|
@ -50,9 +50,7 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// </summary>
|
||||
public Guid CreateUserId { get; set; }
|
||||
|
||||
public int? NumberOfFrames { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue