nombre = $nombre; return $this; } /** * Get nombre * * @return string */ public function getNombre() { return $this->nombre; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Get nombre * * @return string */ public function __toString() { return $this->nombre; } /** * Set idTipoArea * * @param \AppBundle\Entity\Estado $idTipoArea * @return TipoArea */ public function setIdTipoArea(\AppBundle\Entity\TipoArea $idTipoArea = null) { $this->idEstado = $idTipoArea; return $this; } /** * Get idTipoArea * * @return \AppBundle\Entity\TipoArea */ public function getIdTipoArea() { return $this->idTipoArea; } }