| 12345678910111213141516171819202122232425 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Abp.Application.Services.Dto;
- using IwbZero.AppServiceBase;
- using ShwasherSys.ProductInfo.Dto;
- namespace ShwasherSys.ProductInfo
- {
- public interface IProductMapperAppService : IIwbZeroAsyncCrudAppService<ProductMapperDto, int, IwbPagedRequestDto, ProductMapperCreateDto, ProductMapperUpdateDto >
- {
- #region Get
- Task<ProductMapper> GetEntity(EntityDto<int> input);
- Task<ProductMapper> GetEntityById(int id);
- Task<ProductMapper> GetEntityByNo(string no);
- #endregion
- Task<List<ReturnReplaceResultDto>> ReplaceProductNo(ReplaceProductDto input);
- }
- }
|