Пример #1
0
 /**
  * Declares an association between this object and a Admision object.
  *
  * @param                  Admision $v
  * @return Admisionanticipo The current object (for fluent API support)
  * @throws PropelException
  */
 public function setAdmision(Admision $v = null)
 {
     if ($v === null) {
         $this->setIdadmision(NULL);
     } else {
         $this->setIdadmision($v->getIdadmision());
     }
     $this->aAdmision = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Admision object, it will not be re-added.
     if ($v !== null) {
         $v->addAdmisionanticipo($this);
     }
     return $this;
 }