예제 #1
0
 /**
  * Declares an association between this object and a Employe object.
  *
  * @param      Employe $v
  * @return     Intervention The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setEmploye(Employe $v = null)
 {
     if ($v === null) {
         $this->setEmployeId(NULL);
     } else {
         $this->setEmployeId($v->getId());
     }
     $this->aEmploye = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Employe object, it will not be re-added.
     if ($v !== null) {
         $v->addIntervention($this);
     }
     return $this;
 }