Exemple #1
0
 public function setConceptobaja(Conceptobaja $v = null)
 {
     if ($v === null) {
         $this->setFkConceptobajaId(NULL);
     } else {
         $this->setFkConceptobajaId($v->getId());
     }
     $this->aConceptobaja = $v;
     if ($v !== null) {
         $v->addAlumno($this);
     }
     return $this;
 }
 public static function addInstanceToPool(Conceptobaja $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getId();
         }
         self::$instances[$key] = $obj;
     }
 }