public void removeSeat(Seat seat)
 {
     seatList.Remove(seat);
 }
 public void addSeat(Seat seat)
 {
     seatList.Add(seat);
 }