Exemple #1
0
 public void GetTicketOrder()
 {
     this.ChildTicketCount  = Questions.AskForInteger("How many child tickets would you like?");
     this.AdultTicketCount  = Questions.AskForInteger("How many adult tickets would you like?");
     this.SeniorTicketCount = Questions.AskForInteger("How many senior tickets would you like?");
     this.TicketTypeMatinee = Questions.AskForBool("Will these be matinee tickets? (type 'yes' or 'no')");
     this.TotalTicketCount  = ChildTicketCount + AdultTicketCount + SeniorTicketCount;
 }