menuvue = new Menuvueutilisateur(); $this->menuvue->getMenuVue('Modifiertarifacte'); $this->tarif = new Tarifsactes(); $this->police = new Police(); $this->prestataire = new Prestataire(); } public function index() { $idTarif = $this->requete->getParametreFormulaire("id"); $tarif = $this->tarif->getunptarif($idTarif); $typeTarif = $this->tarif->getTypeTarif(); $prestataires = $this->prestataire->getListePrestataireTarif(); $groupes = $this->prestataire->getListeGroupeTarif(); $police = $this->police->getListePoliceTarif(); $this->genererVue(array('tarif' => $tarif,'typeTarif' => $typeTarif, 'prestataires' => $prestataires, 'police' => $police, 'groupes' => $groupes)); } }