Uat_Study
he 2022-09-13 15:47:54 +08:00
parent 2a59621d54
commit f49012daad
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}