ChestClient.Controllers.UserController.List C# (CSharp) Method

List() public method

public List ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult List()
        {
            /*var allUserModels = _db.UserModels.ToList<UserModel>();
            ViewBag.UserModels = allUserModels;
            */
            return Json (Users.Values, JsonRequestBehavior.AllowGet);
        }