Ejemplo n.º 1
0
 /**
  * Get the associated Circunscripcion object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     Circunscripcion The associated Circunscripcion object.
  * @throws     PropelException
  */
 public function getCircunscripcion(PropelPDO $con = null)
 {
     if ($this->aCircunscripcion === null && $this->circunscripcion_id !== null) {
         $this->aCircunscripcion = CircunscripcionPeer::retrieveByPk($this->circunscripcion_id);
         /* The following can be used additionally to
         		   guarantee the related object contains a reference
         		   to this object.  This level of coupling may, however, be
         		   undesirable since it could result in an only partially populated collection
         		   in the referenced object.
         		   $this->aCircunscripcion->addListaCalles($this);
         		 */
     }
     return $this->aCircunscripcion;
 }