Ejemplo n.º 1
0
 /**
  * Get the associated Eleccion object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     Eleccion The associated Eleccion object.
  * @throws     PropelException
  */
 public function getEleccion(PropelPDO $con = null)
 {
     if ($this->aEleccion === null && $this->eleccion_id !== null) {
         $this->aEleccion = EleccionPeer::retrieveByPk($this->eleccion_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->aEleccion->addConvocatorias($this);
         		 */
     }
     return $this->aEleccion;
 }