nombre = $nombre; return $this; } /** * Get nombre * * @return string */ public function getNombre() { return $this->nombre; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set idAreaInvestigacion * * @param \AppBundle\Entity\AreasInvestigacion $idAreaInvestigacion * @return AreasInvestigacion */ public function setIdAreaInvestigacion(\AppBundle\Entity\AreasInvestigacion $idAreaInvestigacion = null) { $this->idAreaInvestigacion = $idAreaInvestigacion; return $this; } /** * Get idAreaInvestigacion * * @return \AppBundle\Entity\AreasInvestigacion */ public function getIdAreaInvestigacion() { return $this->idAreaInvestigacion; } public function __toString() { return $this->getNombre(); } }