Files
irc-netcore-api/IRaCIS.Core.Application/Service/Inspection/Interface/IInspectionService.cs
T
hang fc30cb39ee
continuous-integration/drone/push Build is passing
增加Global Using
2024-09-20 10:19:08 +08:00

24 lines
495 B
C#

using IRaCIS.Core.Application.Contracts;
using IRaCIS.Core.Application.Service.Inspection.DTO;
namespace IRaCIS.Core.Application.Service.Inspection.Interface
{
public interface IInspectionService
{
Task<PageOutput<GetDataInspectionOutDto>> GetInspectionList(GetDataInspectionDto dto);
Task<Guid> AddSignRecordAsync(SignDTO signDTO);
Task<Guid> RecordSing(SignDTO SignInfo);
Task CompletedSign(Guid signId, IResponseOutput response);
}
}