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