public function setFlightBookerFromFlightVoyage(FlightVoyage $flightVoyage, $searchParams)
 {
     $this->flightBooker = new FlightBooker();
     $this->flightBooker->flightVoyage = $flightVoyage;
     $this->flightBooker->status = 'enterCredentials';
     $this->flightBooker->price = $flightVoyage->price;
     $this->flightBooker->searchParams = serialize($searchParams);
     $this->flightBooker->setFlightBookerComponent($this);
 }