コード例 #1
0
 public function setConcepto(Concepto $v = null)
 {
     if ($v === null) {
         $this->setFkConceptoId(0);
     } else {
         $this->setFkConceptoId($v->getId());
     }
     $this->aConcepto = $v;
     if ($v !== null) {
         $v->addBoletinConceptual($this);
     }
     return $this;
 }