prestation/Controleur/ControleurAjaximprimercpeng.php
2025-12-05 10:42:46 +00:00

18 lines
410 B
PHP
Executable File

<?php
require_once 'Framework/Controleurrequete.php'; // OK
require_once 'Modele/Police.php';
class ControleurAjaximprimercpeng extends Controleurrequete
{
private $police;
public function __construct()
{
$this->police = new Police();
}
public function index()
{
require_once $_SESSION['dossierSociete'].'/Tarifs/Controleur/Ajaximprimercpengindex.php';
}
}