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

16 lines
370 B
PHP
Executable File

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/College_temp_d.php';
class ControleurAjaxnouvelleoptiontarif extends Controleur {
private $college_temp;
public function __construct() {
$this->college_temp = new College_temp_d();
}
public function index() {
$this->college_temp->nouvelleoptiontarif();
}
}