Beispiel #1
0
 private void FeedMoney(double amount)
 {
     _vm.AddToBalance(amount);
     MiscUtility.PlaySound("Sounds\\coin.wav");
     Logging.LogFeed(amount, _vm);
     Console.WriteLine($"\n{amount.ToString("C")} was fed into the machine.");
     Console.WriteLine($"Current Money Provided is now {_vm.UserBalance.ToString("C")}");
 }