This commit is contained in:
@@ -563,6 +563,7 @@ namespace IRaCIS.Core.Application.Contracts
|
||||
|
||||
public class DownloadDicomInstanceDto
|
||||
{
|
||||
public bool IsEncapsulated { get; set; }
|
||||
public Guid InstanceId { get; set; }
|
||||
public string FileName { get; set; }
|
||||
public string Path { get; set; }
|
||||
|
||||
@@ -875,6 +875,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
||||
|
||||
InstanceList = z.DicomInstanceList.Select(k => new DownloadDicomInstanceDto()
|
||||
{
|
||||
IsEncapsulated = k.IsEncapsulated,
|
||||
InstanceId = k.Id,
|
||||
FileName = string.Empty,
|
||||
Path = k.Path,
|
||||
@@ -1180,6 +1181,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
||||
|
||||
InstanceList = z.DicomInstanceList.Where(t => t.IsReading).Select(k => new DownloadDicomInstanceDto()
|
||||
{
|
||||
IsEncapsulated=k.IsEncapsulated,
|
||||
InstanceId = k.Id,
|
||||
FileName = string.Empty,
|
||||
Path = k.Path,
|
||||
|
||||
Reference in New Issue
Block a user