prestation/Modele/Adherent_temp.php
2025-12-05 10:42:46 +00:00

12 lines
390 B
PHP
Executable File

<?php
require_once 'Framework/Modele.php';
class Adherent_temp extends Modele {
public function getAdherent_temp($idCollege, $dateEntree, $user, $prorata)
{
$sql = 'call sp_init_adherent(?, ?, ?, ?)';
$adherent_temp = $this->executerRequete($sql, array($idCollege, $dateEntree, $user, $prorata));
return $adherent_temp->fetch(PDO::FETCH_ASSOC);
}
}