16 lines
370 B
PHP
Executable File
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();
|
|
}
|
|
} |