Exemple #1
0
 /**
  * A bank may have more agencies.
  *
  * @throws DataBackendException
  * @return Agency[]
  */
 public function getAgencies()
 {
     if (is_null($this->agencies)) {
         $this->agencies = $this->dataBackend->getAgenciesForBank($this);
     }
     return $this->agencies;
 }