21 lines
671 B
PHP
Executable File
21 lines
671 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Moyenpaiement.php';
|
|
|
|
class ControleurAjaxnocptmoyenpaiement extends Controleur {
|
|
|
|
private $moyenpaiement;
|
|
|
|
public function __construct() {
|
|
$this->moyenpaiement = new Moyenpaiement();
|
|
}
|
|
|
|
public function index() {
|
|
$codeModePaiement = $this->requete->getParametreFormulaire("codeModePaiement");
|
|
$codeMoyenPaiement = $this->requete->getParametreFormulaire("codeMoyenPaiement");
|
|
|
|
$numeroCompte_info = $this->moyenpaiement->getNumeroCompte($codeModePaiement, $codeMoyenPaiement);
|
|
|
|
$this->genererVueAjax(array('numeroCompte_info' => $numeroCompte_info));
|
|
}
|
|
} |