| 123456789101112131415161718192021222324252627 |
- 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<ProductPropertyDto, int, IwbPagedRequestDto, ProductPropertyCreateDto, ProductPropertyUpdateDto >
- {
- #region Get
- Task<ProductProperty> GetEntity(EntityDto<int> input);
- Task<ProductProperty> GetEntityById(int id);
- Task<ProductProperty> GetEntityByNo(string no);
- #endregion
- Task<bool> ImportExcel(FileUploadInfoDto input);
- Task UpdateExtend(ProductPropertyUpdateDto input);
- }
- }
|