using System.Collections.Generic; using System.Threading.Tasks; using System.Web.Mvc; using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; using ShwasherSys.CompanyInfo.FixedAssetInfo.Dto; namespace ShwasherSys.CompanyInfo.FixedAssetInfo { public interface IFixedAssetAppService : IIwbZeroAsyncCrudAppService { Task> GetSelectListName(); Task GetSelectStrName(); #region Get Task GetEntity(EntityDto input); Task GetEntityById(int id); Task GetEntityByNo(string no); #endregion } }