Beispiel #1
0
        public ActionResult Delete(int id, IFormCollection collection)
        {
            try
            {
                dao.Delete(id);

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