using System.Threading.Tasks; using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; using ShwasherSys.ProductInfo.Dto; using ShwasherSys.ProductInfo.Dto.FileUpload; namespace ShwasherSys.ProductInfo { public interface IProductPropertyAppService : IIwbZeroAsyncCrudAppService { #region Get Task GetEntity(EntityDto input); Task GetEntityById(int id); Task GetEntityByNo(string no); #endregion Task ImportExcel(FileUploadInfoDto input); Task UpdateExtend(ProductPropertyUpdateDto input); } }