Ejemplo n.º 1
0
 public static void BuyProduct(int keyPush, int latestKeyPush)
 {
     if (ProductStock.CheckSupply(keyPush))
     {
         Vending.DetailTheExchange(keyPush, latestKeyPush);
     }
     else
     {
         ConcatenateCurrentMessage($"We have run out of {ProductStock.ShowProductInfo(keyPush).ProductName}");
     }
 }