示例#1
0
        public int GetMyUnreadReplyCount()
        {
            LoginBLL login = new LoginBLL();
            var      me    = login.GetMe();

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