Compare commits

..

No commits in common. "61cbfe231d53010662839a934ee31813c071012b" and "7a0e1eda0cc3b1dd1892a570e0607ef64c086f93" have entirely different histories.

1 changed files with 1 additions and 4 deletions

View File

@ -172,10 +172,7 @@ namespace IRaCIS.Core.Application.Service
return (questionList, new
{
IsHaveQuestion=(await _readingMedicineTrialQuestionRepository.AsQueryable()
.Where(x => x.TrialId == inQuery.TrialId && x.TrialReadingCriterionId == inQuery.TrialReadingCriterionId).CountAsync()) > 0,
IsConfirmMedicineQuestion = isConfirmMedicineQuestion,
IsConfirmMedicineQuestion = isConfirmMedicineQuestion,
LanguageType=(await _readingMedicineTrialQuestionRepository.FirstOrDefaultAsync(x => x.TrialReadingCriterionId == inQuery.TrialReadingCriterionId&& x.SystemQuestionId != null))?.LanguageType,
//QuestionCount = questionList.Count(),
});