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

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