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

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