// GET: Admin/User
        public ActionResult Index()
        {
            var dao   = new USERDAO();
            var model = dao.ListAllPaging();

            return(View(model));
        }