menuvue = new Menuvueutilisateur(); $this->menuvue->getMenuVue("Ficheadherent"); $this->adherent = new Adherent(); $this->beneficiaire = new Beneficiaire(); $this->garantieadherent = new Garantieadherent(); } public function index() { $idPolice = $_SESSION['p_idPolice_C']; $idAdherent = $this->requete->getParametre("id"); $adherent = $this->adherent->getContexteAdherentId($idAdherent); $beneficiaires = $this->beneficiaire->getBeneficiairesId($idAdherent); $garantieadherents = $this->garantieadherent->getGarantieAdherent($idAdherent); $this->genererVue(array('adherent' => $adherent, 'beneficiaires' => $beneficiaires, 'garantieadherents' => $garantieadherents)); } }