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

18 lines
469 B
PHP
Executable File

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Gestionconfiee.php';
class ControleurAjaxcontextgarant extends Controleur {
private $garant;
public function __construct() {
$this->garant = new Gestionconfiee();
}
public function index() {
$codeGcAssureur = $this->requete->getParametre("codeGcAssureur");
$idGarantAjax = $this->garant->getContexteAjaxGarant($codeGcAssureur);
echo $idGarantAjax;
}
}