menuvue = new Menuvueutilisateur(); $this->menuvue->getMenuGestionTatbles('naturepiece'); $this->naturepiece = new naturepiece(); } public function index($codesearch="",$libellesearch="") { if (isset($_POST['codesearch'])) { $codesearch=$_POST['codesearch']; $libellesearch=$_POST['libellesearch']; } $naturepieces = $this->naturepiece->getnaturepieces($codesearch,$libellesearch); $this->genererVue(array('naturepieces' => $naturepieces, 'codesearch' => $codesearch, 'libellesearch' => $libellesearch)); } public function supprimer() { $id = $this->requete->getParametre("id"); $this->naturepiece->supprimer($id); $this->rediriger("Tblistenaturepiece"); } }