Import initial du projet prestation

This commit is contained in:
KANE LAZENI
2025-12-01 18:54:33 +00:00
commit b6408839bb
5340 changed files with 1483298 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Menuvueutilisateur.php';
require_once 'Modele/Gestionconfiee.php';
class ControleurGcfacturation extends Controleur
{
private $gc;
private $menuvue;
public function __construct()
{
$this->menuvue = new Menuvueutilisateur();
$this->menuvue->getMenuVue('Gcfacturation');
$this->gc = new Gestionconfiee();
}
public function index()
{
$gc = $this->gc->getListe() ;
$this->genererVue(array('gc' => $gc));
}
}