ICustomerInvoiceAddressApplicationService.cs 635 B

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