Import initial du projet garant

This commit is contained in:
KANE LAZENI
2025-12-01 19:18:15 +00:00
commit 07cc17ae33
3882 changed files with 2315205 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Menuvueutilisateur.php';
class ControleurFactureconsgc extends Controleur {
public function __construct() {
$this->menuvue = new Menuvueutilisateur();
$this->menuvue->getMenuVue('Factureconsgc');
$_SESSION['idFacture_C'] = "0";
}
public function index()
{
$this->genererVue();
}
}