Import initial du projet Production
This commit is contained in:
18
Controleur/ControleurAjaxcontextgarant.php
Normal file
18
Controleur/ControleurAjaxcontextgarant.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
require_once 'Framework/Controleur.php';
|
||||
require_once 'Modele/Gestionconfiee.php';
|
||||
|
||||
class ControleurAjaxcontextgarant extends Controleur {
|
||||
private $garant;
|
||||
|
||||
public function __construct() {
|
||||
$this->garant = new Gestionconfiee();
|
||||
}
|
||||
|
||||
public function index() {
|
||||
$codeGcAssureur = $this->requete->getParametre("codeGcAssureur");
|
||||
$idGarantAjax = $this->garant->getContexteAjaxGarant($codeGcAssureur);
|
||||
|
||||
echo $idGarantAjax;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user