ILicenseDocumentsApplicationService.cs 578 B

123456789101112131415161718192021
  1. using System.Threading.Tasks;
  2. using Abp.Application.Services.Dto;
  3. using IwbZero.AppServiceBase;
  4. using ShwasherSys.CompanyInfo.LicenseInfo.Dto;
  5. namespace ShwasherSys.CompanyInfo.LicenseInfo
  6. {
  7. public interface ILicenseDocumentAppService : IIwbZeroAsyncCrudAppService<LicenseDocumentDto, int, IwbPagedRequestDto, LicenseDocumentCreateDto, LicenseDocumentUpdateDto >
  8. {
  9. #region Get
  10. Task<LicenseDocument> GetEntity(EntityDto<int> input);
  11. Task<LicenseDocument> GetEntityById(int id);
  12. Task<LicenseDocument> GetEntityByNo(string no);
  13. #endregion
  14. }
  15. }