示例#1
0
 public void ticketsOnSale(int price)
 {
     //Method that is the result of a price reduction event. Prints out the new price and number of price cuts
     Console.WriteLine("PRICED REDUCED!!!!!");
     Console.WriteLine("{0} has plane tickets that are on sale: as low as ${1} each", airline.getThreadName(), price);
     Console.WriteLine("Total Price Cuts = {0}\n\n", airline.getPCuts() + 1);
 }