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

18 lines
416 B
PHP
Executable File

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