This commit is contained in:
he
2022-09-13 15:47:54 +08:00
parent 2a59621d54
commit f49012daad
@@ -88,7 +88,8 @@ namespace IRaCIS.Application.Services
[HttpPost]
public async Task<List<TumorAssessment>> GetTumorAssessmentList(GetTumorAssessmentListInDto inDto)
{
return await _tumorAssessmentRepository.Where(x=>x.CriterionId==inDto.CriterionId).ToListAsync();
var result= await _tumorAssessmentRepository.Where(x => x.CriterionId == inDto.CriterionId).ToListAsync();
return result;
}