From 5cc70ca317d537fedf6884a2baedff12bca1355a Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Fri, 14 Oct 2022 17:14:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/ReadingCalculate/ReadingCalculateService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/ReadingCalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/ReadingCalculateService.cs index 4fb76c6dd..4f072aa6c 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/ReadingCalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/ReadingCalculateService.cs @@ -29,7 +29,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate {CriterionType.RECIST1Pointt1,typeof(RECIST1Point1CalculateService) } //RECIST1.1 }; - private readonly IEnumerable CriterionServices; + private readonly IEnumerable _criterionServices; private readonly IRepository _visitTaskRepository; @@ -71,7 +71,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate { CriterionType thisCriterionType = criterionType.Value; Type thisServiceType = CalculateServiceDic[thisCriterionType]; - _useCriterion = CriterionServices.FirstOrDefault(x => x.GetType().Name == nameof(thisServiceType) + "Proxy"); + _useCriterion = _criterionServices.FirstOrDefault(x => x.GetType().Name == nameof(thisServiceType) + "Proxy"); if (criterionType == null) {