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 { #region Get Task GetEntity(EntityDto input); Task GetEntityById(int id); Task GetEntityByNo(string no); #endregion Task> ReplaceProductNo(ReplaceProductDto input); } }