ICommentRepository.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Common.Page;
  4. using GxPress.Entity;
  5. using GxPress.Request.Comment;
  6. using GxPress.Result.Comment;
  7. using Datory;
  8. namespace GxPress.Repository.Interface
  9. {
  10. public interface ICommentRepository : IRepository
  11. {
  12. /// <summary>
  13. /// 添加文章评论
  14. /// </summary>
  15. /// <param name="request"></param>
  16. /// <returns></returns>
  17. Task<int> CommentInAsync(CommentInRequest request);
  18. Task<PagedList<CommentPageResult>> GetPagedList(CommentSearchPageRequest request);
  19. Task<int> GetCountAsync(CommentSearchPageRequest request);
  20. Task<IEnumerable<CommentPageResult>> GetPageListAsync(CommentSearchPageRequest request);
  21. Task<List<CommentReplyResult>>
  22. GetCommentReplyResultByPid(int pid, List<CommentReplyResult> commentReplyResults);
  23. /// <summary>
  24. /// 删除评论
  25. /// </summary>
  26. /// <param name="request"></param>
  27. /// <returns></returns>
  28. Task<bool> DeleteCommentAsync(CommentDeleteRequest request);
  29. /// <summary>
  30. /// 获取文章的评论条数
  31. /// </summary>
  32. /// <param name="articleId"></param>
  33. /// <returns></returns>
  34. Task<int> GetCommentCountAsync(int articleId);
  35. Task<Comment> GetAsync(SqlKata.Query query);
  36. Task<bool> UpdateAsync(Comment comment);
  37. Task<int> CountAsync(SqlKata.Query query);
  38. Task<bool> UpdateCommentAsync(CommentUpdateRequest request);
  39. /// <summary>
  40. /// 后台评论分页列表
  41. /// </summary>
  42. /// <param name="request"></param>
  43. /// <returns></returns>
  44. Task<PagedList<CommentResult>> GetAllAsync(CommentSearchRequest request);
  45. }
  46. }