12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using GxPress.Request.Reply;
- using GxPress.Result.Reply;
- using GxPress.Service.Interface.Reply;
- using System.Linq;
- namespace GxPress.Service.Implement.Reply
- {
- /// <summary>
- /// 回复
- /// </summary>
- public partial class ReplyService : IReplyService
- {
- public ReplyService()
- {
- }
- /// <summary>
- /// 获取我收到和我回复的评论
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- public async Task<IEnumerable<ReplyResult>> GetReplyResults(ReplyRequest request)
- {
- var result = new List<ReplyResult>();
- //话题本
- result.AddRange(await GetReplyNoteOrTopicResults(request));
- //小组话题
- result.AddRange(await GetReplyGroupTopicResults(request));
- if (request.TypeValue == 0)
- result.AddRange(await GetReceiptCommentResult(request));
- else
- result.AddRange(await GetMyReceiptCommentResult(request));
- //站内信 通知
- result.AddRange(await GetReplyNoticeTopicResults(request));
- result.OrderByDescending(n => n.CreatedDate);
- return result;
- }
- }
- }
|