radiantrh/Controleur/ControleurAjaxdetailseance.php

22 lines
425 B
PHP
Executable File

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Seance_temp.php';
class ControleurAjaxdetailseance extends Controleur {
private $seance;
public function __construct() {
$this->seance = new Seance_temp();
}
public function index()
{
$this->genererVueAjax();
}
public function enregistrerseance()
{
$this->seance->enregistrerseance();
}
}