Exemplo n.º 1
0
        public ActionResult Delete(int id, League model)
        {
            try
            {
                League.Delete(model);

                return(RedirectToAction("Index"));
            }
            catch
            {
                return(View());
            }
        }