Exemplo n.º 1
0
        public static void PastryBuy()
        {
            Console.WriteLine("How many pasteries would you like to buy?");
            int pastryNumber = int.Parse(Console.ReadLine());

            pastryNumbers += pastryNumber;
            Pastry pastry = new Pastry(pastryNumber, 2);

            pastryTotal = pastry.GetPastryCost(pastryNumbers, 2);
            Console.WriteLine("Pastry Cost:  " + pastryTotal);

            BakeType();
        }