using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; using System.Threading.Tasks; using WeApp.BasicInfo.StudentHelp.Dto; namespace WeApp.BasicInfo.StudentHelp { public interface IStudentHelpAppService : IIwbZeroAsyncCrudAppService { #region Get Task GetEntity(EntityDto input); Task GetEntityById(string id); Task GetEntityByNo(string no); #endregion Get } }