30 lines
881 B
C#
30 lines
881 B
C#
using IRaCIS.Core.Application.Service.Reading.Dto;
|
|
using IRaCIS.Core.Application.ViewModel;
|
|
|
|
|
|
namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|
{
|
|
public class PCWG3CalculateService : BaseService, ICriterionCalculateService
|
|
{
|
|
public Task<AddTaskLesionAnswerFromLastTaskOutDto> AddTaskLesionAnswerFromLastTask(AddTaskLesionAnswerFromLastTaskInDto inDto)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task CalculateTask(CalculateTaskInDto inDto)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<object> GetReportVerify(GetReportVerifyInDto inDto)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task VerifyVisitTaskQuestions(VerifyVisitTaskQuestionsInDto inDto)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|