Exemplo n.º 1
0
        //Get: Manage/Users -   //Get: Manage/Users/{id}
        public ActionResult Users(string id)
        {
            ViewBag.Gebruikers = Gebruiker.All();
            if (id != null)
            {
                ViewBag.Gebruiker = Gebruiker.Find(id);
            }


            return(View("~/Views/Manage/Users.cshtml"));
        }