Esempio n. 1
0
 /**
  * Renvoie les Rivieres liés à la collection
  * @return RiviereCollection
  */
 public function getRivieres()
 {
     if (is_null($this->cacheRivieres)) {
         $this->cacheRivieres = RiviereBusiness::getFromParties($this);
         $this->cacheRivieres->store();
     }
     return $this->cacheRivieres;
 }