IStandardsApplicationService.cs 797 B

12345678910111213141516171819202122232425
  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 IStandardsAppService : IIwbAsyncCrudAppService<StandardDto, int, PagedRequestDto, StandardCreateDto, StandardUpdateDto >
  10. {
  11. List<SelectListItem> GetStandardsList();
  12. Task ImportData();
  13. Task ImportData2();
  14. Task<PagedResultDto<StandardCatalogDto>> GetAllCatalog(PagedRequestDto input);
  15. Task<PagedResultDto<StandardDetailDto>> GetDetail(PagedRequestDto input);
  16. Task<PagedResultDto<StandardDetailDto>> GetDetailView(PagedRequestDto input);
  17. Task<StandardCatalog> GetCatalog(int id);
  18. }
  19. }