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 NomDetailsBdtfx implements NomDetails {
3
 
4
	private $nomDetails = null;
5
 
6
	public function __construct(NomDetailsGenerique $nomDetails) {
7
		$this->nomDetails = $nomDetails;
8
	}
9
 
10
	public function consulter() {
11
		return $this->nomDetails->consulter();
12
	}
13
 
14
	public function ajouter() {
15
 
16
	}
17
}
18
?>