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