IRmProductsApplicationService.cs 612 B

123456789101112131415161718192021222324
  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 IRmProductAppService : IIwbZeroAsyncCrudAppService<RmProductDto, string, IwbPagedRequestDto, RmProductCreateDto, RmProductUpdateDto >
  9. {
  10. #region Get
  11. Task<RmProduct> GetEntity(EntityDto<string> input);
  12. Task<RmProduct> GetEntityById(string id);
  13. Task<RmProduct> GetEntityByNo(string no);
  14. #endregion
  15. bool ImportExcel(FileUploadInfoDto input);
  16. }
  17. }