Ejemplo n.º 1
0
        static void CartMenu(Order cart)
        {
            Starter.CartMenu();
            int select;

            int.TryParse(Console.ReadLine(), out select);

            if (select == 1)
            {
                EditCart(cart);
            }
        }