19 lines
408 B
PHP
Executable File
19 lines
408 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Gestionconfiee.php';
|
|
|
|
class ControleurAjaxfacturegccons extends Controleur
|
|
{
|
|
private $facture;
|
|
|
|
public function __construct() {
|
|
$this->facture = new Gestionconfiee();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$gcs = $this->facture->get_factures_gc_cons();
|
|
|
|
$this->genererVueAjax(array('gcs' => $gcs));
|
|
}
|
|
} |