garant/Controleur/ControleurGcnewfacturation.php
2025-12-01 19:18:15 +00:00

26 lines
546 B
PHP

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Menuvueutilisateur.php';
require_once 'Modele/Gestionconfiee.php';
class ControleurGcnewfacturation extends Controleur
{
private $gc;
public function __construct()
{
$this->menuvue = new Menuvueutilisateur();
$this->menuvue->getMenuVue('Gcnewfacturation');
$this->gc = new Gestionconfiee();
}
public function index()
{
$gc = $this->gc->getGcNewFactureId() ;
$this->genererVue(array('gc' => $gc));
}
}