ISemiProductsApplicationService.cs 532 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using IwbZero.AppServiceBase;
  4. using ShwasherSys.ProductInfo.Dto;
  5. using System.Web.Mvc;
  6. using Abp.Application.Services.Dto;
  7. using ShwasherSys.ProductInfo.Dto.FileUpload;
  8. namespace ShwasherSys.ProductInfo
  9. {
  10. public interface ISemiProductsAppService : IIwbAsyncCrudAppService<SemiProductDto, string, PagedRequestDto, SemiProductCreateDto, SemiProductUpdateDto >
  11. {
  12. bool ImportExcel(FileUploadInfoDto input);
  13. Task<string> ExportExcel();
  14. }
  15. }