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

19 lines
376 B
PHP

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Menuvueutilisateur.php';
class ControleurConsultations extends Controleur
{
public function __construct()
{
$this->menuvue = new Menuvueutilisateur();
$this->menuvue->getMenuVue('Consultations');
}
public function index()
{
$this->genererVue();
}
}