ICustomerSendsApplicationService.cs 559 B

123456789101112131415
  1. using Abp.Application.Services.Dto;
  2. using IwbZero.AppServiceBase;
  3. using ShwasherSys.CustomerInfo.Dto;
  4. using System.Collections.Generic;
  5. using System.Threading.Tasks;
  6. using ShwasherSys.Dto;
  7. namespace ShwasherSys.CustomerInfo
  8. {
  9. public interface ICustomerSendsAppService : IIwbAsyncCrudAppService<CustomerSendDto, int, PagedRequestDto, CustomerSendCreateDto, CustomerSendUpdateDto >
  10. {
  11. List<CustomerSendDto> GetCustomerSendDtoByCustomerId(CustomerSendDto customerId);
  12. Task<CustomerSendDto> GetEntityById(CommonDto<int> input);
  13. }
  14. }