26 lines
607 B
PHP
Executable File
26 lines
607 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Trancheage.php';
|
|
|
|
class ControleurAjaxfiltreentetetrancheange extends Controleur {
|
|
private $trancheage;
|
|
|
|
public function __construct() {
|
|
$this->trancheage = new Trancheage();
|
|
}
|
|
|
|
public function index() {
|
|
|
|
$codeGcAssureur = $this->requete->getParametreFormulaire('codeGcAssureur');
|
|
|
|
$entetestrancheage = $this->trancheage->geterentetestrancheage($codeGcAssureur);
|
|
|
|
$this->genererVueAjax(array(
|
|
'entetestrancheage' => $entetestrancheage
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|