This commit is contained in:
KANE LAZENI 2025-12-21 09:10:19 +00:00
parent 424f4f62b2
commit 6df92d790f

View File

@ -82,4 +82,14 @@ class Typeprestataire extends Modele
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);
}
}