修改
This commit is contained in:
@@ -22,6 +22,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
public Guid VisitTaskId { get; set; }
|
||||
}
|
||||
|
||||
public class SubmitGlobalReadingInfoInDto
|
||||
{
|
||||
public Guid GlobalTaskId { get; set; }
|
||||
}
|
||||
|
||||
public class SaveGlobalReadingInfoInDto
|
||||
{
|
||||
public Guid GlobalTaskId { get; set; }
|
||||
|
||||
@@ -18,6 +18,6 @@ namespace IRaCIS.Core.Application.Contracts
|
||||
|
||||
void FindChildQuestion(GetTrialReadingQuestionOutDto trialReadingQuestion, List<GetTrialReadingQuestionOutDto> questionlists);
|
||||
|
||||
Task<IResponseOutput> SubmitGlobalReadingInfo(SaveGlobalReadingInfoInDto inDto);
|
||||
Task<IResponseOutput> SubmitGlobalReadingInfo(SubmitGlobalReadingInfoInDto inDto);
|
||||
}
|
||||
}
|
||||
@@ -797,13 +797,13 @@ namespace IRaCIS.Application.Services
|
||||
/// <param name="inDto"></param>
|
||||
/// <returns></returns>
|
||||
[NonDynamicMethod]
|
||||
public async Task<IResponseOutput> SubmitGlobalReadingInfo(SaveGlobalReadingInfoInDto inDto)
|
||||
public async Task<IResponseOutput> SubmitGlobalReadingInfo(SubmitGlobalReadingInfoInDto inDto)
|
||||
{
|
||||
var result = await this.SaveGlobalReadingInfo(inDto);
|
||||
//var result = await this.SaveGlobalReadingInfo(inDto);
|
||||
|
||||
await this.SubmitTaskChangeState(inDto.GlobalTaskId);
|
||||
|
||||
return result;
|
||||
return ResponseOutput.Ok(true) ;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user