/** * Get the associated Perfil object * * @param PropelPDO Optional Connection object. * @return Perfil The associated Perfil object. * @throws PropelException */ public function getPerfil(PropelPDO $con = null) { if ($this->aPerfil === null && $this->perfil_id !== null) { $this->aPerfil = PerfilPeer::retrieveByPk($this->perfil_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->aPerfil->addValoresperados($this); */ } return $this->aPerfil; }