using System.Threading.Tasks; using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; using ShwasherSys.CompanyInfo.LicenseInfo.Dto; namespace ShwasherSys.CompanyInfo.LicenseInfo { public interface ILicenseDocumentAppService : IIwbZeroAsyncCrudAppService { #region Get Task GetEntity(EntityDto input); Task GetEntityById(int id); Task GetEntityByNo(string no); #endregion } }