production/Controleur/ControleurAjaxetatenteterapportsp.php
2025-12-02 11:29:44 +00:00

18 lines
411 B
PHP
Executable File

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Gestionconfiee.php';
class ControleurAjaxetatenteterapportsp extends Controleur {
private $garant;
public function __construct() {
$this->garant = new Gestionconfiee();
}
public function index()
{
$garants = $this->garant->getListe();
$this->genererVueAjax(array('garants' =>$garants ));
}
}