IKnowledgeApplicationService.cs 539 B

123456789101112131415161718192021
  1. using System.Threading.Tasks;
  2. using Abp.Application.Services.Dto;
  3. using IwbZero.AppServiceBase;
  4. using WePlatform.WeLib.Knowledge.Dto;
  5. namespace WePlatform.WeLib.Knowledge
  6. {
  7. public interface IKnowledgeAppService : IIwbZeroAsyncCrudAppService<KnowledgeDto, string, IwbPagedRequestDto, KnowledgeCreateDto, KnowledgeUpdateDto >
  8. {
  9. #region Get
  10. Task<KnowledgeInfo> GetEntity(EntityDto<string> input);
  11. Task<KnowledgeInfo> GetEntityById(string id);
  12. Task<KnowledgeInfo> GetEntityByNo(string no);
  13. #endregion
  14. }
  15. }