IFixedAssetsApplicationService.cs 701 B

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using System.Web.Mvc;
  4. using Abp.Application.Services.Dto;
  5. using IwbZero.AppServiceBase;
  6. using ShwasherSys.CompanyInfo.FixedAssetInfo.Dto;
  7. namespace ShwasherSys.CompanyInfo.FixedAssetInfo
  8. {
  9. public interface IFixedAssetAppService : IIwbZeroAsyncCrudAppService<FixedAssetDto, int, IwbPagedRequestDto, FixedAssetCreateDto, FixedAssetUpdateDto >
  10. {
  11. Task<List<SelectListItem>> GetSelectListName();
  12. Task<string> GetSelectStrName();
  13. #region Get
  14. Task<FixedAsset> GetEntity(EntityDto<int> input);
  15. Task<FixedAsset> GetEntityById(int id);
  16. Task<FixedAsset> GetEntityByNo(string no);
  17. #endregion
  18. }
  19. }