Exemple #1
0
 public Booking(Show show)
 {
     this.BookingID = BookingIDSequence.Instance.NextID;
     this.show = show;
     show.AddBooking(this);
     this.tickets = new List<ITicket>();
 }