// GET: Pizza/Create
        public ActionResult Create(Pizza p)
        {
            try
            {
                if (ModelState.IsValid)
                {
                    throw new ArgumentException("this pizza eh no good!!");
                }
            }
            SM.Add(p);

            return(RedirectToAction(nameof(Index)));
        }