This commit is contained in:
KANE LAZENI 2025-12-21 08:54:24 +00:00
parent b1c35b1971
commit 2c652e51d4

View File

@ -81,4 +81,14 @@ class Typeprestataire extends Modele
$liste = $this->executerRequete($sql); $liste = $this->executerRequete($sql);
return $liste->fetchAll(PDO::FETCH_ASSOC); return $liste->fetchAll(PDO::FETCH_ASSOC);
} }
public function getListeReseau()
{
$sql = 'SELECT codeTypePrestataire as code, libelle
FROM typeprestataire where (afficher="1") order by libelle';
$liste = $this->executerRequete($sql);
return $liste->fetchAll(PDO::FETCH_ASSOC);
}
} }