This commit is contained in:
he
2023-07-04 13:34:22 +08:00
parent 6813b42ae1
commit a7b8cc6307
4 changed files with 67 additions and 11 deletions
@@ -0,0 +1,14 @@
using IRaCIS.Core.Application.Service.Reading.Dto;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IRaCIS.Core.Application.Service.Reading.Interface
{
public interface IClinicalAnswerService
{
Task AutoAddCRCClinical(AutoAddClinicalInDto inDto);
}
}