IRC_NewDev
he 2024-03-07 13:02:41 +08:00
parent 9bfd89cb9b
commit 8846c1d728
1 changed files with 4 additions and 2 deletions

View File

@ -180,7 +180,9 @@ namespace IRaCIS.Core.Application.Service
var questionList = await query.ToPagedListAsync(inDto.PageIndex, inDto.PageSize, inDto.SortField, inDto.Asc); var questionList = await query.ToPagedListAsync(inDto.PageIndex, inDto.PageSize, inDto.SortField, inDto.Asc);
return (questionList, new return (questionList, new
{ {
IsConfirmMedicineQuestion = isConfirmMedicineQuestion, IsConfirmMedicineQuestion = isConfirmMedicineQuestion,
LanguageType=(await _readingMedicineTrialQuestionRepository.FirstOrDefaultAsync(x => x.TrialReadingCriterionId == inDto.TrialReadingCriterionId&& x.SystemQuestionId != null))?.LanguageType,
//QuestionCount = questionList.Count(), //QuestionCount = questionList.Count(),
}); });
} }