Example #1
0
        public PaginationEntity <FullReplyInfo> GetMyReply(int pageSize, int currentPageIndex)
        {
            LoginBLL login = new LoginBLL();
            var      me    = login.GetMe();

            return(bll.GetReplyList(new QueryNotifyReplyForm
            {
                Enabled = true,
                ReplyTo = me.ID,
            }));
        }