修改
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
he 2025-03-13 16:43:19 +08:00
parent 57cd0281fa
commit a3b5129ee2
2 changed files with 5 additions and 1 deletions

View File

@ -89,6 +89,10 @@ namespace IRaCIS.Core.Application.Service
return attachmentList; return attachmentList;
} }
//public async Task<>
[NonDynamicMethod] [NonDynamicMethod]
public async Task<AttachmentDTO> GetDetailById(Guid attachmentId) public async Task<AttachmentDTO> GetDetailById(Guid attachmentId)
{ {

View File

@ -253,7 +253,7 @@ namespace IRaCIS.Core.Application.Service
var doctorPageList = await doctorQuery.ToPagedListAsync(inQuery); var doctorPageList = await doctorQuery.ToPagedListAsync(inQuery);
var enrollStateList = await _enrollDetailRepository.Where(x => x.TrialId == inQuery.TrialId && x.EnrollStatus > EnrollStatus.InviteIntoGroup) var enrollStateList = await _enrollDetailRepository.Where(x => x.TrialId == inQuery.TrialId && x.EnrollStatus >= EnrollStatus.InviteIntoGroup)
.ProjectTo<DoctorStateModelDTO>(_mapper.ConfigurationProvider).ToListAsync(); .ProjectTo<DoctorStateModelDTO>(_mapper.ConfigurationProvider).ToListAsync();