16 lines
547 B
PHP
Executable File
16 lines
547 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Prestataire.php';
|
|
|
|
class ControleurAjaxrequeteenteteoptique extends Controleur {
|
|
private $prestataire;
|
|
|
|
public function __construct() {
|
|
$this->opticien = (new Prestataire())->getListeOpticien();
|
|
$this->prestataireprescription = (new Prestataire())->getListeTypePrestataire("CSO");
|
|
}
|
|
|
|
public function index() {
|
|
$this->genererVueAjax(array('opticien' => $this->opticien, 'prestataireprescription' => $this->prestataireprescription));
|
|
}
|
|
} |