Compare commits

..

No commits in common. "e113bc9fe1f6a4c2d4b65e967639805bf480fdf0" and "3bedea2aba8242d3cb5e1d4e3758a1d3dfbd55e5" have entirely different histories.

2 changed files with 1 additions and 10 deletions

View File

@ -2021,11 +2021,6 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
{
return "NA";
}
var presentSpd = inDto.QuestionInfo.Where(x => x.QuestionType == QuestionType.SpleenLength).Select(x => x.Answer).FirstOrDefault().IsNullOrEmptyReturnNull();
if (presentSpd == null)
{
return string.Empty;
}
var lowSplenoncus = taskAnswer.Where(x=>x.SpleenLength!=0).OrderBy(x => x.SpleenLength).FirstOrDefault();
if (lowSplenoncus != null)

View File

@ -2019,11 +2019,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
{
return "NA";
}
var presentSpd = inDto.QuestionInfo.Where(x => x.QuestionType == QuestionType.SpleenLength).Select(x => x.Answer).FirstOrDefault().IsNullOrEmptyReturnNull();
if (presentSpd == null)
{
return string.Empty;
}
var lowSplenoncus = taskAnswer.Where(x => x.SpleenLength != 0).OrderBy(x => x.SpleenLength).FirstOrDefault();
if (lowSplenoncus != null)
{