Compare commits

..

No commits in common. "ab800d09ca4fc06e1d5f9b4d4d317c81f04218ab" and "d279bad2d0ec88f65bb9faff31284c29a2434d33" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ namespace IRaCIS.Core.Application.Contracts
{
var trialSiteEquipmentSurveyQueryable = _trialSiteEquipmentSurveyRepository.Where(t => t.TrialSiteSurveyId == trialSiteSurveyId)
.WhereIf(!string.IsNullOrEmpty(scannerType), t => t.ScannerType.Contains(scannerType!))
.ProjectTo<TrialSiteEquipmentSurveyView>(_mapper.ConfigurationProvider,new { isEn_Us = _userInfo.IsEn_Us });
.ProjectTo<TrialSiteEquipmentSurveyView>(_mapper.ConfigurationProvider);
return await trialSiteEquipmentSurveyQueryable.ToListAsync();
}