Compare commits

..

No commits in common. "3c51287178ef0364cb40b096d8d45451e2ce57bd" and "fadd8a7f795c65779f6375372a01d172d0334b04" have entirely different histories.

2 changed files with 0 additions and 3 deletions

View File

@ -26,8 +26,6 @@ namespace IRaCIS.Core.Application.ViewModel
{
public Guid RowId { get; set; }
public decimal RowIndex { get; set; }
public decimal AllPPD { get; set; }
}

View File

@ -1034,7 +1034,6 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
result.Add(new GetSplitPPdOutDto()
{
RowId = answerList.Where(x => x.RowIndex == i).Select(x => x.RowId).FirstOrDefault(),
RowIndex = i,
AllPPD = answerList.Where(x => x.RowIndex > i && x.RowIndex < (i + 1)).Sum(x => x.Answer),
});
}