修改一版
parent
c9046e97b7
commit
86d9189991
|
@ -189,12 +189,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
public Guid TaskMedicalReviewId { get; set; }
|
||||
}
|
||||
|
||||
public class ApplyReReadingInDto
|
||||
public class IRSendMedicalReviewDialogInDto
|
||||
{
|
||||
|
||||
public Guid TrialId { get; set; }
|
||||
|
||||
public bool IsCopyOrigenalForms { get; set; }
|
||||
public bool IsCopyOrigenalForms { get; set; } = false;
|
||||
|
||||
public string RequestReReadingReason { get; set; } = string.Empty;
|
||||
|
||||
|
|
|
@ -366,7 +366,7 @@ namespace IRaCIS.Core.Application.Service
|
|||
/// </summary>
|
||||
/// <param name="inDto"></param>
|
||||
/// <returns></returns>
|
||||
public async Task<IResponseOutput> IRSendMedicalReviewDialog(ApplyReReadingInDto inDto)
|
||||
public async Task<IResponseOutput> IRSendMedicalReviewDialog(IRSendMedicalReviewDialogInDto inDto)
|
||||
{
|
||||
var visitTaskId = await _taskMedicalReviewRepository.Where(x => x.Id == inDto.TaskMedicalReviewId).Select(x => x.VisitTaskId).FirstOrDefaultAsync();
|
||||
if (inDto.IsApplyHeavyReading??false)
|
||||
|
|
Loading…
Reference in New Issue