public IActionResult RemoveTopping()
        {
            order = TempData.Peek <OrderClass>("order");
            Topping topping = new Topping();

            topping.BuildMenus(order.location);

            return(View(topping));
        }