Beispiel #1
0
        public ActionResult UserMsgs(int pg = 1)
        {
            var bll = new UserMsgBLL();
            int i   = 0;
            var mdl = bll.Query(null, null, pg, out i, 10);

            ViewData["pager"] = Common.Utility.HtmlPager(10, pg, i, 20);
            return(PartialView(mdl));
        }
Beispiel #2
0
 public DashBoardSv()
 {
     _BLL = new UserMsgBLL();
 }