Esempio n. 1
0
        public ActionResult Delete(int id)
        {
            UserController uc = new Controllers.UserController();

            uc.Remove(id);
            return(View("List", uc.GetAll()));
        }