Uat_Study
he 2022-11-08 13:44:13 +08:00
parent c5dd859e4f
commit 6c8257b1cb
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ namespace IRaCIS.Core.Application.Service.RC
GetSystemGlobalInfoOutDto result = new GetSystemGlobalInfoOutDto()
{
IsMustGlobalReading = await _readingQuestionCriterionSystemRepository.Where(x => x.Id == inDto.SystemCriterionId).Select(x => x.IsMustGlobalReading).FirstOrDefaultAsync(),
DictionaryList = await _readingCriterionDictionaryRepository.AsQueryable().Where(x => x.CriterionId == inDto.SystemCriterionId && x.ParentCode == ReadingCommon.CriterionDictionary.OncologyAssess)
DictionaryList = await _readingCriterionDictionaryRepository.AsQueryable().Where(x => x.CriterionId == inDto.SystemCriterionId && x.ParentCode == ReadingCommon.CriterionDictionary.GlobalAssess)
.ProjectTo<CriterionDictionaryInfo>(_mapper.ConfigurationProvider).OrderBy(x => x.ShowOrder).ToListAsync()
};