Esempio n. 1
0
 public void Sell(Games games, Customer customer)
 {
     Console.WriteLine("Game Name:" + games.GameName + "\nthe customer is bought:" + customer.FirstName);
 }
Esempio n. 2
0
 public void SellWithDiscount(Games games, Customer customer, Campaign campaign)
 {
     Console.WriteLine("Game Name:" + games.GameName + "\nthe customer is bought:" + customer.FirstName + "\nDiscount:" + campaign.CampaignDiscountRate);
 }