public void Remove(Booking booking)
 {
     bookings.Remove(booking);
 }
 public void Add(Booking booking)
 {
     bookings.Add(booking);
 }