Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 510 → Rev 511

/trunk/bibliotheque/NomCourant.php
6,6 → 6,7
private $retenu = null;
 
public function __construct($num_nom_selectionne, Noms $noms, Taxons $taxons) {
$this->nns = $num_nom_selectionne;
$this->selectionne = new Nom($noms->getNom($this->nns));
$this->retenu = new Nom($taxons->getTaxon($this->nns));
36,6 → 37,10
public function getNomRetenu() {
return $this->retenu;
}
public function getNt() {
return $this->retenu->get('num_taxonomique');
}
 
}
?>