prestation/Controleur/ControleurAjaxcommissiongarant.php
2025-12-05 10:42:46 +00:00

19 lines
553 B
PHP
Executable File

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Gestionconfiee.php';
class ControleurAjaxcommissiongarant extends Controleur {
private $gc;
public function __construct() {
$this->gc = new Gestionconfiee();
}
public function index(){
$codeGcAssureur = $this->requete->getParametreFormulaire("codeGcAssureur");
$tauxCommissionGcAssureur_info = $this->gc->gcTauxGarant($codeGcAssureur);
$this->genererVueAjax(array('tauxCommissionGcAssureur_info' => $tauxCommissionGcAssureur_info));
}
}