Esempio n. 1
0
        public void InsertCoinsForPurchase()
        {
            while (UserMenu.DoYouWantMoreCoins())
            {
                Coin coin = UserMenu.ChooseCoinsForPayment();

                temporaryRegister.Add(coin);
            }
            string coinSelected = UserMenu.DisplayCoinSelection();
            //customer.wallet.coins.Remove();
        }
Esempio n. 2
0
 public void BeginPurchase()
 {
     UserMenu.DisplayIntro();
     SelectSoda();
 }