public function add(Voiture $voiture)
 {
     $q = $this->_db->prepare('INSERT INTO voiture SET immatriculation = :immatriculation, marque = :marque, type = :type, annee= :annee, kilometrage = :kilometrage, date_arrivee = :date_arrivee, proprietaire = :proprietaire');
     $q->bindValue(':immatriculation', $voiture->immatriculation(), PDO::PARAM_STR);
     $q->bindValue(':marque', $voiture->marque(), PDO::PARAM_STR);
     $q->bindValue(':type', $voiture->type(), PDO::PARAM_STR);
     $q->bindValue(':annee', $voiture->annee(), PDO::PARAM_INT);
     $q->bindValue(':kilometrage', $voiture->kilometrage(), PDO::PARAM_INT);
     $q->bindValue(':date_arrivee', $voiture->date_arrivee(), PDO::PARAM_INT);
     $q->bindValue(':proprietaire', $voiture->proprietaire(), PDO::PARAM_INT);
     $q->execute();
     return self::ACTION_REUSSIE;
 }