Uat_Study
parent
b167ec794a
commit
e941bd8266
|
@ -339,6 +339,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
public class GetManualListOutDto
|
public class GetManualListOutDto
|
||||||
{
|
{
|
||||||
|
|
||||||
|
public Guid Id { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Name
|
/// Name
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -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))
|
return await _trialDocumentRepository.Where(x => x.TrialId == inDto.TrialId && x.NeedConfirmedUserTypeList.Any(y => y.NeedConfirmUserTypeId == _userInfo.UserTypeId))
|
||||||
.Select(x => new GetManualListOutDto()
|
.Select(x => new GetManualListOutDto()
|
||||||
{
|
{
|
||||||
|
Id=x.Id,
|
||||||
Name = x.Name,
|
Name = x.Name,
|
||||||
Path = x.Path
|
Path = x.Path
|
||||||
}).ToListAsync();
|
}).ToListAsync();
|
||||||
|
|
Loading…
Reference in New Issue