IStatementBillsApplicationService.cs 959 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using System.Web.Mvc;
  4. using Abp.Application.Services.Dto;
  5. using IwbZero.AppServiceBase;
  6. using ShwasherSys.Invoice.Dto;
  7. using ShwasherSys.OrderSendInfo;
  8. using ShwasherSys.OrderSendInfo.Dto;
  9. namespace ShwasherSys.Invoice
  10. {
  11. public interface IStatementBillAppService : IIwbZeroAsyncCrudAppService<StatementBillDto, int, IwbPagedRequestDto, StatementBillCreateDto, StatementBillUpdateDto >
  12. {
  13. #region Get
  14. Task<StatementBill> GetEntity(EntityDto<int> input);
  15. Task<StatementBill> GetEntityById(int id);
  16. Task<StatementBill> GetEntityByNo(string no);
  17. #endregion
  18. List<SelectListItem> GetHasSendOrderCustomer();
  19. Task<List<ViewOrderSend>> GetOrderSendByCustomerId(QuerySendDto input);
  20. Task<List<ViewStatementBill>> QueryStatisticStatementBillItems(QueryStatementBillReportDto input);
  21. Task UpdateDesc(StatementBillUpdateDescDto input);
  22. }
  23. }