tarif = new Tarifsoptiques(); } public function index() { } public function enregistrermodif() { $idTarif = $this->requete->getParametreFormulaire("idTarif"); $libelle = $this->requete->getParametreFormulaire("libelle"); $libelleEng = $this->requete->getParametreFormulaire("libelleEng"); $this->tarif->enregistrermodif($idTarif, $libelle, $libelleEng); } public function creertarifoptiques() { $libelle = $this->requete->getParametreFormulaire("libelle"); $libelleEng = $this->requete->getParametreFormulaire("libelleEng"); $this->tarif->creertarifoptiques($libelle, $libelleEng); } public function supprimer() { $idTarif = $this->requete->getParametreFormulaire("idTarif"); $this->tarif->supprimer($idTarif); } }