IProductMappersApplicationService.cs 655 B

12345678910111213141516171819202122232425
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Abp.Application.Services.Dto;
  4. using IwbZero.AppServiceBase;
  5. using ShwasherSys.ProductInfo.Dto;
  6. namespace ShwasherSys.ProductInfo
  7. {
  8. public interface IProductMapperAppService : IIwbZeroAsyncCrudAppService<ProductMapperDto, int, IwbPagedRequestDto, ProductMapperCreateDto, ProductMapperUpdateDto >
  9. {
  10. #region Get
  11. Task<ProductMapper> GetEntity(EntityDto<int> input);
  12. Task<ProductMapper> GetEntityById(int id);
  13. Task<ProductMapper> GetEntityByNo(string no);
  14. #endregion
  15. Task<List<ReturnReplaceResultDto>> ReplaceProductNo(ReplaceProductDto input);
  16. }
  17. }