コード例 #1
0
        public ActionResult Delete(int id)
        {
            Guitar deletedProduct = repository.DeleteProduct(id);

            if (deletedProduct != null)
            {
                TempData["message"] = string.Format("Товар \"{0}\" был удалён",
                                                    deletedProduct.Name);
            }

            return(RedirectToAction("Index"));
        }