Esempio n. 1
0
        public static void ChangeMoneyStock(int coin, string coinQuantityToRemove)
        {
            int intCoinQuantityToRemove = Convert.ToInt32(coinQuantityToRemove);

            VendingMachineManager.ChangeMoneyStock(coin, intCoinQuantityToRemove);
        }
Esempio n. 2
0
 public static int CurrentTotalMoneySum()
 {
     return(VendingMachineManager.CurrentTotalMoneySum());
 }
Esempio n. 3
0
 public static bool CheckCoin(int coin)
 {
     return(VendingMachineManager.CheckCoin(coin));
 }
Esempio n. 4
0
 public static StringBuilder ShowAllProducts()
 {
     //Returns the StringBuilder in the VendingMachineManager.ShowAllProducts()
     return(VendingMachineManager.ShowAllProducts());
 }