Exemple #1
0
        // GET: Topping/Details/5
        public ActionResult ToppingDetails(int id)
        {
            var topping = db1.GetToppingByToppingId(id);

            t             = new Models.Topping();
            t.ToppingName = topping.ToppingName;
            t.Count       = topping.Count;

            toppingList.Add(t);

            return(View(t));
        }