id; } /** * Set universidad * * @param string $universidad * * @return educacion */ public function setUniversidad($universidad) { $this->universidad = $universidad; return $this; } /** * Get universidad * * @return string */ public function getUniversidad() { return $this->universidad; } /** * Set titulo * * @param string $titulo * * @return educacion */ public function setTitulo($titulo) { $this->titulo = $titulo; return $this; } /** * Get titulo * * @return string */ public function getTitulo() { return $this->titulo; } /** * Set fegreso * * @param \DateTime $fegreso * * @return educacion */ public function setFegreso($fegreso) { $this->fegreso = $fegreso; return $this; } /** * Get fegreso * * @return \DateTime */ public function getFegreso() { return $this->fegreso; } }