This commit is contained in:
he
2022-10-20 14:14:26 +08:00
parent 8d4be2a8e7
commit 32f9c84ab7
2 changed files with 20 additions and 18 deletions
@@ -6,24 +6,26 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
{
public class PCWG3CalculateService : BaseService, ICriterionCalculateService
{
public Task<AddTaskLesionAnswerFromLastTaskOutDto> AddTaskLesionAnswerFromLastTask(AddTaskLesionAnswerFromLastTaskInDto inDto)
public async Task<AddTaskLesionAnswerFromLastTaskOutDto> AddTaskLesionAnswerFromLastTask(AddTaskLesionAnswerFromLastTaskInDto inDto)
{
throw new NotImplementedException();
return new AddTaskLesionAnswerFromLastTaskOutDto();
}
public Task CalculateTask(CalculateTaskInDto inDto)
public async Task CalculateTask(CalculateTaskInDto inDto)
{
throw new NotImplementedException();
}
public Task<object> GetReportVerify(GetReportVerifyInDto inDto)
public async Task<object> GetReportVerify(GetReportVerifyInDto inDto)
{
throw new NotImplementedException();
return new() {
};
}
public Task VerifyVisitTaskQuestions(VerifyVisitTaskQuestionsInDto inDto)
public async Task VerifyVisitTaskQuestions(VerifyVisitTaskQuestionsInDto inDto)
{
throw new NotImplementedException();
}
}
}