public PostVehicleCommand(IBookingsContext context)
 {
     _db = context;
 }
 public PostPetsCommand(IBookingsContext context)
 {
     _db = context;
 }
 public GetBookingQuery(IBookingsContext bookingContext)
 {
     _db = bookingContext;
 }
 public GetAllBookingsQuery(IBookingsContext bookingContext)
 {
     _db = bookingContext;
 }
 public PostPassengersCommand(IBookingsContext context)
 {
     _db = context;
 }