Beispiel #1
0
        public ActionResult DeleteConfirmed(int id)
        {
            Order order = OrdersDB.GetOrderById(id);

            OrdersDB.DeleteOrder(order);
            return(RedirectToAction("Index"));
        }