| 12345678910111213141516171819202122232425 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using System.Web.Mvc;
- using Abp.Application.Services.Dto;
- using IwbZero.AppServiceBase;
- using ShwasherSys.ProductInfo.Dto;
- namespace ShwasherSys.ProductInfo
- {
- public interface IStandardsAppService : IIwbAsyncCrudAppService<StandardDto, int, PagedRequestDto, StandardCreateDto, StandardUpdateDto >
- {
- List<SelectListItem> GetStandardsList();
- Task ImportData();
- Task ImportData2();
- Task<PagedResultDto<StandardCatalogDto>> GetAllCatalog(PagedRequestDto input);
- Task<PagedResultDto<StandardDetailDto>> GetDetail(PagedRequestDto input);
- Task<PagedResultDto<StandardDetailDto>> GetDetailView(PagedRequestDto input);
- Task<StandardCatalog> GetCatalog(int id);
- }
- }
|