id = $id; return $this; } /** * Get the value of id. * * @return integer */ public function getId() { return $this->id; } /** * Set the value of estatus. * * @param boolean $estatus * @return \UBV\SurUbvBundle\Entity\DocenteProyecto */ public function setEstatus($estatus) { $this->estatus = $estatus; return $this; } /** * Get the value of estatus. * * @return boolean */ public function getEstatus() { return $this->estatus; } /** * Set Docente entity (many to one). * * @param \UBV\SurUbvBundle\Entity\Docente $docente * @return \UBV\SurUbvBundle\Entity\DocenteProyecto */ public function setDocente(Docente $docente = null) { $this->docente = $docente; return $this; } /** * Get Docente entity (many to one). * * @return \UBV\SurUbvBundle\Entity\Docente */ public function getDocente() { return $this->docente; } /** * Set Proyecto entity (many to one). * * @param \UBV\SurUbvBundle\Entity\Proyecto $proyecto * @return \UBV\SurUbvBundle\Entity\DocenteProyecto */ public function setProyecto(Proyecto $proyecto = null) { $this->proyecto = $proyecto; return $this; } /** * Get Proyecto entity (many to one). * * @return \UBV\SurUbvBundle\Entity\Proyecto */ public function getProyecto() { return $this->proyecto; } /** * Set VinculacionProyecto entity (many to one). * * @param \UBV\SurUbvBundle\Entity\VinculacionProyecto $vinculacionProyecto * @return \UBV\SurUbvBundle\Entity\DocenteProyecto */ public function setVinculacionProyecto(VinculacionProyecto $vinculacionProyecto = null) { $this->vinculacionProyecto = $vinculacionProyecto; return $this; } /** * Get VinculacionProyecto entity (many to one). * * @return \UBV\SurUbvBundle\Entity\VinculacionProyecto */ public function getVinculacionProyecto() { return $this->vinculacionProyecto; } public function __sleep() { return array('id', 'estatus', 'docente_id', 'proyecto_id', 'vinculacion_proyecto_id'); } }