typesociete = new Typesociete(); } public function index() { $id = $this->requete->getParametreFormulaire("id"); $Typesociete = $this->typesociete->getlistertypesociete(); $this->genererVueAjax(array( 'typesociete' => $Typesociete )); } public function ajouter(){ $codeType = strtoupper($this->requete->getParametreFormulaire("codeType")); $libelleType = $this->requete->getParametreFormulaire("libelleType"); $this->typesociete->ajoutertypesociete($codeType,$libelleType); } }