Ejemplo n.º 1
0
        /// <summary>
        /// Shows all the different items, that can be bought in the machine
        /// </summary>
        public static void ShowItems()
        {
            int chooseIndex = 1;

            for (int i = 0; i < 3; i++)
            {
                for (int j = 0; j < 3; j++)
                {
                    Console.Write(chooseIndex + ": " + vendingMachine.wheels[j, i].Product.Name + " " + " - " + vendingMachine.wheels[j, i].Product.Price + ",-DKK  --  ");
                    chooseIndex++;
                }
                Console.WriteLine();
            }
            vendingMachine.ExecuteOrder();
        }