public BookingsController(ExploreCaliforniaContext context) : base(context)
 {
     _context       = context;
     bookingGateway = new BookingGateway(context);
 }
 public BookingController()
 {
     dataGateway = new BookingGateway();
 }