using IRaCIS.Core.Application.Contracts; using IRaCIS.Core.Application.Service.Inspection.DTO; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IRaCIS.Core.Application.Service.Inspection.Interface { public interface IInspectionService { Task> GetInspectionData(GetDataInspectionDto dto); Task VerifySignatureAsync(SignDTO signDTO, IResponseOutput response); Task AddSignRecordAsync(SignDTO signDTO); Task RecordSing(SignDTO SignInfo, IResponseOutput response); } }