| 123456789101112131415161718192021 |
- using System.Threading.Tasks;
- using Abp.Application.Services.Dto;
- using IwbZero.AppServiceBase;
- using WeApp.BasicInfo.PhoneQuestion.Dto;
- namespace WeApp.BasicInfo.PhoneQuestion
- {
- public interface IPhoneQuestionAppService : IIwbZeroAsyncCrudAppService<PhoneQuestionDto, string, IwbPagedRequestDto, PhoneQuestionCreateDto, PhoneQuestionUpdateDto >
- {
- #region Get
- Task<PhoneQuestionInfo> GetEntity(EntityDto<string> input);
- Task<PhoneQuestionInfo> GetEntityById(string id);
- Task<PhoneQuestionInfo> GetEntityByNo(string no);
-
- #endregion
- }
- }
|