/** * @param Adherent $adherent * @return Adherent */ public function readhesion($adherent) { $copie = new Adherent(); $copie->setNom($adherent->getNom()); $copie->setPrenom($adherent->getPrenom()); $copie->setAdresse($adherent->getAdresse()); $copie->setCodePostal($adherent->getCodePostal()); $copie->setVille($adherent->getVille()); $copie->setEmail($adherent->getEmail()); $copie->setNumeroFixe($adherent->getNumeroFixe()); $copie->setNumeroPortable($adherent->getNumeroPortable()); $copie->setDateNaissance($adherent->getDateNaissance()); $copie->setDateAdhesion($adherent->getDateAdhesion()); $copie->setAnnee($adherent->getAnnee()); $this->em->persist($copie); $this->em->flush(); return $copie; }