diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingCalculateService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingCalculateService.cs
index 630990c21..841507992 100644
--- a/IRaCIS.Core.Application/Service/Reading/ReadingCalculateService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/ReadingCalculateService.cs
@@ -564,7 +564,7 @@ namespace IRaCIS.Core.Application.Service
///
public async Task GetIsLymphTarget(ReadingCalculateDto inDto)
{
- var result = string.Empty;
+ var result = IsLymph.No.GetEnumInt();
var tableQuestion = inDto.QuestionInfo.Where(x => x.LesionType == LesionType.TargetLesion).SelectMany(x => x.TableRowInfoList).ToList();
foreach (var item in tableQuestion)
@@ -575,7 +575,7 @@ namespace IRaCIS.Core.Application.Service
}
}
- result = IsLymph.No.GetEnumInt();
+
return result;
}