IPhoneQuestionApplicationService.cs 573 B

123456789101112131415161718192021
  1. using System.Threading.Tasks;
  2. using Abp.Application.Services.Dto;
  3. using IwbZero.AppServiceBase;
  4. using WeApp.BasicInfo.PhoneQuestion.Dto;
  5. namespace WeApp.BasicInfo.PhoneQuestion
  6. {
  7. public interface IPhoneQuestionAppService : IIwbZeroAsyncCrudAppService<PhoneQuestionDto, string, IwbPagedRequestDto, PhoneQuestionCreateDto, PhoneQuestionUpdateDto >
  8. {
  9. #region Get
  10. Task<PhoneQuestionInfo> GetEntity(EntityDto<string> input);
  11. Task<PhoneQuestionInfo> GetEntityById(string id);
  12. Task<PhoneQuestionInfo> GetEntityByNo(string no);
  13. #endregion
  14. }
  15. }