public function add(Client $clt)
 {
     if ($clt->getAddable()) {
         $q = $this->_db->prepare("INSERT INTO client SET  nom=:nom, prenom=:prenom, rue=:rue, codePostal=:cp, ville=:ville, vip=:vip, dateInscription=:dateIns,  mail=:mail, mdp=:mdp, validate=:val");
         $q->execute(array(":nom" => $clt->getNom(), ":prenom" => $clt->getPrenom(), ":rue" => $clt->getRue(), ":cp" => $clt->getCodePostal(), ":ville" => $clt->getVille(), ":vip" => $clt->getVip(), ":dateIns" => $clt->getDateInscription(), ":mail" => $clt->getMail(), ":mdp" => $clt->getMdp(), ":val" => $clt->getValidate()));
     }
 }