Exemplo n.º 1
0
 /**
  * Get the associated Agendatelefonica object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     Agendatelefonica The associated Agendatelefonica object.
  * @throws     PropelException
  */
 public function getAgendatelefonica(PropelPDO $con = null)
 {
     if ($this->aAgendatelefonica === null && $this->agendatelefonica_agendatelefonicaid !== null) {
         $this->aAgendatelefonica = AgendatelefonicaPeer::retrieveByPk($this->agendatelefonica_agendatelefonicaid);
         /* 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->aAgendatelefonica->addAgendatelefonicadadess($this);
         		 */
     }
     return $this->aAgendatelefonica;
 }