public function __construct()
 {
     parent::__construct();
     $this->WithPrimaryResource(new FakeBookableResource(2));
     $this->WithResource(new FakeBookableResource(3));
     $this->WithBookedBy(new FakeUserSession());
     $this->WithStatus(ReservationStatus::Created);
 }