ReplyService.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Request.Reply;
  4. using GxPress.Result.Reply;
  5. using GxPress.Service.Interface.Reply;
  6. using System.Linq;
  7. namespace GxPress.Service.Implement.Reply
  8. {
  9. /// <summary>
  10. /// 回复
  11. /// </summary>
  12. public partial class ReplyService : IReplyService
  13. {
  14. public ReplyService()
  15. {
  16. }
  17. /// <summary>
  18. /// 获取我收到和我回复的评论
  19. /// </summary>
  20. /// <param name="request"></param>
  21. /// <returns></returns>
  22. public async Task<IEnumerable<ReplyResult>> GetReplyResults(ReplyRequest request)
  23. {
  24. var result = new List<ReplyResult>();
  25. //话题本
  26. result.AddRange(await GetReplyNoteOrTopicResults(request));
  27. //小组话题
  28. result.AddRange(await GetReplyGroupTopicResults(request));
  29. if (request.TypeValue == 0)
  30. result.AddRange(await GetReceiptCommentResult(request));
  31. else
  32. result.AddRange(await GetMyReceiptCommentResult(request));
  33. //站内信 通知
  34. result.AddRange(await GetReplyNoticeTopicResults(request));
  35. result.OrderByDescending(n => n.CreatedDate);
  36. return result;
  37. }
  38. }
  39. }