Exemple #1
0
 public function setPais(Pais $v = null)
 {
     if ($v === null) {
         $this->setFkPaisId(0);
     } else {
         $this->setFkPaisId($v->getId());
     }
     $this->aPais = $v;
     if ($v !== null) {
         $v->addDocente($this);
     }
     return $this;
 }