21 lines
451 B
PHP
Executable File
21 lines
451 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Adherent.php';
|
|
|
|
class ControleurAjaxlisteRapportbeneficiaire 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());
|
|
}
|
|
} |