Test_IRC_Net8
parent
94bba7837c
commit
17f3d821ea
|
@ -2018,6 +2018,21 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
|||
);
|
||||
}
|
||||
|
||||
//
|
||||
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(DicomInstance)))
|
||||
{
|
||||
var type = GetEntityAuditOpt(item);
|
||||
|
||||
var entity = item.Entity as DicomInstance;
|
||||
|
||||
await InsertInspection<DicomInstance>(item.Entity as DicomInstance, type, x => new InspectionConvertDTO()
|
||||
{
|
||||
ObjectRelationParentId = x.SeriesId,
|
||||
ObjectRelationParentId2 = x.StudyId,
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
// 非Dicom
|
||||
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(NoneDicomStudy)))
|
||||
|
|
Loading…
Reference in New Issue