Example #1
0
 public void SaleInfo(Games game)
 {
     Console.WriteLine(game.GameName + " isimli oyuna Cadılar Bayramı kampanyası uygulandı. Yeni Fiyat: " + game.GamePrice + " TL");
 }
Example #2
0
 public void CalculateSale(Games game)
 {
     game.GamePrice = game.GamePrice - game.GamePrice * 0.25;
 }
Example #3
0
 public void Buy(Games game)
 {
     throw new NotImplementedException();
 }