IProductPropertysApplicationService.cs 652 B

12345678910111213141516171819202122232425
  1. using System.Threading.Tasks;
  2. using Abp.Application.Services.Dto;
  3. using IwbZero.AppServiceBase;
  4. using ShwasherSys.ProductInfo.Dto;
  5. using ShwasherSys.ProductInfo.Dto.FileUpload;
  6. namespace ShwasherSys.ProductInfo
  7. {
  8. public interface IProductPropertyAppService : IIwbZeroAsyncCrudAppService<ProductPropertyDto, int, IwbPagedRequestDto, ProductPropertyCreateDto, ProductPropertyUpdateDto >
  9. {
  10. #region Get
  11. Task<ProductProperty> GetEntity(EntityDto<int> input);
  12. Task<ProductProperty> GetEntityById(int id);
  13. Task<ProductProperty> GetEntityByNo(string no);
  14. #endregion
  15. Task<bool> ImportExcel(FileUploadInfoDto input);
  16. }
  17. }