garant/Controleur/ControleurAjaxlisteEffectifcumule.php
2025-12-01 19:18:15 +00:00

21 lines
446 B
PHP

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Adherent.php';
class ControleurAjaxlisteEffectifcumule extends Controleur {
private $adherent;
public function __construct()
{
$this->adherent = new Adherent();
}
public function index()
{
$idPolice = $_SESSION['idPolice_C'];
//$adherents = $this->adherent->getlisteassuresexo($idPolice);
$this->genererVueAjax(array());
}
}