Subversion Repositories eFlore/Projets.eflore-projets

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
215 jpm 1
<?php
2
class NomsListeFournier implements NomsListe {
3
 
4
	private $nomsListe = null;
5
 
6
	public function __construct(NomsListeGenerique $nomsListe) {
7
		$this->nomsListe = $nomsListe;
8
	}
9
 
10
	public function consulter() {
11
		return $this->nomsListe->consulter();
12
	}
13
 
14
	public function ajouter() {
15
 
16
	}
17
}
18
?>