|
@@ -795,12 +795,12 @@ namespace WingAIDiagnosisService.Service
|
|
|
var locationItem = GetDescription(reportDetectedObject, DiagnosisDescriptionEnum.QlaqueLocation);
|
|
|
if (locationItem != null)
|
|
|
{
|
|
|
- reportItems.Add(new DataItemDTO { Key = "6f57bb90-6492-421e-ad3e-6c684b7f7452;6e36fa47-edb2-4ed8-8521-ddb9e1fa5536;LeftPlaquePosition", Value = $"locationItem.Value" });
|
|
|
+ reportItems.Add(new DataItemDTO { Key = "6f57bb90-6492-421e-ad3e-6c684b7f7452;6e36fa47-edb2-4ed8-8521-ddb9e1fa5536;LeftPlaquePosition", Value = $"{locationItem.Value}" });
|
|
|
}
|
|
|
var echoItem = GetDescription(reportDetectedObject, DiagnosisDescriptionEnum.QlaqueEchoPattern);
|
|
|
if (echoItem != null)
|
|
|
{
|
|
|
- reportItems.Add(new DataItemDTO { Key = "ccef71cd-1c52-4614-a54f-d6d58cb8c586;d440eb6e-2630-4787-8700-486d097ba9f1;LeftPlaqueEcho", Value = $"echoItem.Value" });
|
|
|
+ reportItems.Add(new DataItemDTO { Key = "ccef71cd-1c52-4614-a54f-d6d58cb8c586;d440eb6e-2630-4787-8700-486d097ba9f1;LeftPlaqueEcho", Value = $"{echoItem.Value}" });
|
|
|
}
|
|
|
var rateOfStenosis = GetDescription(reportDetectedObject, DiagnosisDescriptionEnum.CarotidRateOfStenosis);
|
|
|
if (rateOfStenosis != null)
|
|
@@ -864,12 +864,12 @@ namespace WingAIDiagnosisService.Service
|
|
|
var locationItem = GetDescription(reportDetectedObject, DiagnosisDescriptionEnum.QlaqueLocation);
|
|
|
if (locationItem != null)
|
|
|
{
|
|
|
- reportItems.Add(new DataItemDTO { Key = "1153870e-10c8-4674-99bf-108937db1060;053091d2-8ea0-4fcb-a222-00b46f60d12f;RightPlaquePosition", Value = $"locationItem.Value" });
|
|
|
+ reportItems.Add(new DataItemDTO { Key = "1153870e-10c8-4674-99bf-108937db1060;053091d2-8ea0-4fcb-a222-00b46f60d12f;RightPlaquePosition", Value = $"{locationItem.Value}" });
|
|
|
}
|
|
|
var echoItem = GetDescription(reportDetectedObject, DiagnosisDescriptionEnum.QlaqueEchoPattern);
|
|
|
if (echoItem != null)
|
|
|
{
|
|
|
- reportItems.Add(new DataItemDTO { Key = "c82e8655-169f-42be-ac99-5e7a56329924;e77f550d-37f3-492a-98dd-a981535383a5;RightPlaqueEcho", Value = $"echoItem.Value" });
|
|
|
+ reportItems.Add(new DataItemDTO { Key = "c82e8655-169f-42be-ac99-5e7a56329924;e77f550d-37f3-492a-98dd-a981535383a5;RightPlaqueEcho", Value = $"{echoItem.Value}" });
|
|
|
}
|
|
|
var rateOfStenosis = GetDescription(reportDetectedObject, DiagnosisDescriptionEnum.CarotidRateOfStenosis);
|
|
|
if (rateOfStenosis != null)
|