Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 215 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php
class NomsListeBdtfx implements NomsListe {

        private $nomsListe = null;

        public function __construct(NomsListeGenerique $nomsListe) {
                $this->nomsListe = $nomsListe;
        }

        public function consulter() {
                return $this->nomsListe->consulter();
        }

        public function ajouter() {

        }
}
?>