IExpressApplicationService.cs 631 B

1234567891011121314151617181920
  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.BasicInfo.ExpressInfo.Dto;
  7. using ShwasherSys.BasicInfo.Factory.Dto;
  8. namespace ShwasherSys.BasicInfo.ExpressInfo
  9. {
  10. public interface IExpressAppService : IIwbAsyncCrudAppService<ExpressLogisticsDto, int, PagedRequestDto, ExpressLogisticsCreateDto, ExpressLogisticsUpdateDto>
  11. {
  12. List<SelectListItem> GetExpressSelects();
  13. // Task<string> GetProviderOptions();
  14. ExpressLogisticsDto GetExpressDtoById(EntityDto<int> input);
  15. }
  16. }