radiantassure/Modele/Reponseententeprealable.php
2025-12-07 09:35:13 +00:00

12 lines
343 B
PHP
Executable File

<?php
require_once 'Framework/Modele.php';
class Reponseententeprealable extends Modele {
public function getListe() {
$sql = 'SELECT codeReponseEntentePrealable as code, libelle FROM p_reponseententeprealable order by 1';
$liste = $this->executerRequete($sql);
return $liste->fetchAll(PDO::FETCH_ASSOC);
}
}