public SeatFinder(Theater theater) : this(theater, new List <Seat>()) { }
public SeatFinder(Theater theater, List <Seat> booked) { _theater = theater; _booked = booked; }