Uat_Study
he 2023-05-10 14:02:13 +08:00
parent b167ec794a
commit e941bd8266
2 changed files with 3 additions and 0 deletions

View File

@ -339,6 +339,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class GetManualListOutDto
{
public Guid Id { get; set; }
/// <summary>
/// Name
/// </summary>

View File

@ -151,6 +151,7 @@ namespace IRaCIS.Application.Services
return await _trialDocumentRepository.Where(x => x.TrialId == inDto.TrialId && x.NeedConfirmedUserTypeList.Any(y => y.NeedConfirmUserTypeId == _userInfo.UserTypeId))
.Select(x => new GetManualListOutDto()
{
Id=x.Id,
Name = x.Name,
Path = x.Path
}).ToListAsync();