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

16 lines
408 B
PHP
Executable File

<?php
require_once 'Framework/Controleur.php';
// require_once 'Modele/Client.php';
class ControleurAjaxflexcode extends Controleur {
public function __construct() {
// $this->client = new Client();
}
public function index() {
// $idClient = $this->requete->getParametre("idClient");
// $this->client->getContexteAjaxClient($idClient);
$this->genererVueAjax();
}
}