Exemplo n.º 1
0
        public ActionResult Delete(int hikerId)
        {
            Hiker newHiker = Hiker.Find(hikerId);

            newHiker.Delete();
            return(RedirectToAction("Index"));
        }