Exemplo n.º 1
0
 public function setTipoinforme(Tipoinforme $v = null)
 {
     if ($v === null) {
         $this->setFkTipoinformeId(NULL);
     } else {
         $this->setFkTipoinformeId($v->getId());
     }
     $this->aTipoinforme = $v;
     if ($v !== null) {
         $v->addInforme($this);
     }
     return $this;
 }