//Constructor (Spawner)
        public Simulation()
        {
            sodaMachine = new SodaMachine();
            customer    = new Customer();
            UserInterface.Welcome();
            string paymentChoice = UserInterface.ChoosePayment();

            PaymentChoice(paymentChoice);
        }
예제 #2
0
 //Constructor (Spawner)
 public Simulation()
 {
     _customer    = new Customer();
     _sodaMachine = new SodaMachine();
 }