15 lines
462 B
PHP
15 lines
462 B
PHP
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Moyenpaiement.php';
|
|
|
|
class ControleurAjaxmoyenpaiement extends Controleur {
|
|
|
|
public function __construct() {
|
|
}
|
|
|
|
public function index() {
|
|
$codeModePaiement = $this->requete->getParametreFormulaire("codeModePaiement");
|
|
$moyenpaiement = (new Moyenpaiement())->getListe($codeModePaiement);
|
|
$this->genererVueAjax(array('moyenpaiement' => $moyenpaiement));
|
|
}
|
|
} |