IStudentTipApplicationService.cs 570 B

1234567891011121314151617181920
  1. using System.Threading.Tasks;
  2. using Abp.Application.Services.Dto;
  3. using IwbZero.AppServiceBase;
  4. using WeApp.BasicInfo.StudentTip.Dto;
  5. namespace WeApp.BasicInfo.StudentTip
  6. {
  7. public interface IStudentTipAppService : IIwbZeroAsyncCrudAppService<StudentTipDto, string, IwbPagedRequestDto, StudentTipCreateDto, StudentTipUpdateDto>
  8. {
  9. #region Get
  10. Task<StudentTipInfo> GetEntity(EntityDto<string> input);
  11. Task<StudentTipInfo> GetEntityById(string id);
  12. Task<StudentTipInfo> GetEntityByNo(string no);
  13. #endregion Get
  14. }
  15. }