prestation/Controleur/ControleurAjaxcontextclientd.php
2025-12-01 18:54:33 +00:00

16 lines
397 B
PHP

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