IProductsApplicationService.cs 620 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.ProductInfo.Dto;
  7. namespace ShwasherSys.ProductInfo
  8. {
  9. public interface IProductsAppService : IIwbAsyncCrudAppService<ProductDto, string, PagedRequestDto, ProductCreateDto, ProductUpdateDto >
  10. {
  11. List<SelectListItem> GetProductPropertyList(string pcPropertyName);
  12. Task<PagedResultDto<ProductDto>> GetQueryCustomerDefaultProduct(PagedRequestDto input);
  13. Task<string> ExportExcel(List<MultiSearchDto> input);
  14. }
  15. }