17 lines
538 B
PHP
17 lines
538 B
PHP
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Ouinon.php';
|
|
|
|
class ControleurAjaxrequeteentetefacture extends Controleur {
|
|
private $ouinon;
|
|
|
|
public function __construct() {
|
|
$this->ouinonfacture = (new Ouinon())->getListe();
|
|
$this->ouinonhospit = (new Ouinon())->getListe();
|
|
$this->ouinonchirurgie = (new Ouinon())->getListe();
|
|
}
|
|
|
|
public function index() {
|
|
$this->genererVueAjax(array('ouinonhospit' => $this->ouinonhospit, 'ouinonchirurgie' => $this->ouinonchirurgie));
|
|
}
|
|
} |