menuvue = new Menuvueutilisateur(); $this->menuvue->getMenuVue('Refuserententeprealables'); $this->ententeprealable = new Ententeprealable(); $this->garantieadherent = new Garantieadherent(); $this->beneficiaire = new Beneficiaire(); } public function index() { $idDemandeententeprealable = $this->requete->getParametre("id"); $ententeprealable = $this->ententeprealable->getEntenteprealableId($idDemandeententeprealable); $garantieadherents = $this->garantieadherent->getGarantieBeneficiaire($ententeprealable['idBeneficiaire']); $actes = $this->ententeprealable->getBaremePlafondAdherent($ententeprealable['idAdherent'], $ententeprealable['idBeneficiaire']); $police = $this->beneficiaire->getSituationPolice($ententeprealable['idBeneficiaire']); $college = $this->beneficiaire->getSituationCollege($ententeprealable['idBeneficiaire']); $baseTarification = $this->beneficiaire->getBaseTarificationBeneficiaire($ententeprealable['idBeneficiaire']); $this->genererVue(array('ententeprealable' => $ententeprealable, 'actes' => $actes, 'garantieadherents' => $garantieadherents, 'police' => $police, 'college' => $college, 'baseTarification' => $baseTarification)); } }