@@ -191,7 +191,9 @@ namespace IRaCIS.Core.Application.Contracts
|
||||
TrialSiteSurvey? currentEntity = null;
|
||||
|
||||
|
||||
var userList = await _trialSiteUserRepository.Where(t => t.TrialId == userInfo.TrialId && t.TrialSiteId == userInfo.TrialSiteId, false, true).ProjectTo<TrialSiteUserSurvey>(_mapper.ConfigurationProvider).ToListAsync();
|
||||
var list = await _trialSiteUserRepository.Where(t => t.TrialId == userInfo.TrialId && t.TrialSiteId == userInfo.TrialSiteId, false, true).ToListAsync();
|
||||
|
||||
var userList = _mapper.Map<List<TrialSiteUserSurvey>>(list);
|
||||
|
||||
//普通登录
|
||||
if (userInfo.IsUpdate == false)
|
||||
|
||||
Reference in New Issue
Block a user