nombre = $nombre; return $this; } /** * Get nombre * * @return string */ public function getNombre() { return $this->nombre; } /** * Set direccion * * @param string $direccion * @return Institucion */ public function setDireccion($direccion) { $this->direccion = $direccion; return $this; } /** * Get direccion * * @return string */ public function getDireccion() { return $this->direccion; } /** * Set latitud * * @param string $latitud * @return Institucion */ public function setLatitud($latitud) { $this->latitud = $latitud; return $this; } /** * Get latitud * * @return string */ public function getLatitud() { return $this->latitud; } /** * Set longitud * * @param string $longitud * @return Institucion */ public function setLongitud($longitud) { $this->longitud = $longitud; return $this; } /** * Get longitud * * @return string */ public function getLongitud() { return $this->longitud; } /** * Set telefono * * @param string $telefono * @return Institucion */ public function setTelefono($telefono) { $this->telefono = $telefono; return $this; } /** * Get telefono * * @return string */ public function getTelefono() { return $this->telefono; } /** * Set idAldeaSucre * * @param integer $idAldeaSucre * @return Institucion */ public function setIdAldeaSucre($idAldeaSucre) { $this->idAldeaSucre = $idAldeaSucre; return $this; } /** * Get idAldeaSucre * * @return integer */ public function getIdAldeaSucre() { return $this->idAldeaSucre; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set idTipoInstitucion * * @param \AppBundle\Entity\TipoInstitucion $idTipoInstitucion * @return Institucion */ public function setIdTipoInstitucion(\AppBundle\Entity\TipoInstitucion $idTipoInstitucion = null) { $this->idTipoInstitucion = $idTipoInstitucion; return $this; } /** * Get idTipoInstitucion * * @return \AppBundle\Entity\TipoInstitucion */ public function getIdTipoInstitucion() { return $this->idTipoInstitucion; } /** * Set idEjeParroquia * * @param \AppBundle\Entity\EjeParroquia $idEjeParroquia * @return Institucion */ public function setIdEjeParroquia(\AppBundle\Entity\EjeParroquia $idEjeParroquia = null) { $this->idEjeParroquia = $idEjeParroquia; return $this; } /** * Get idEjeParroquia * * @return \AppBundle\Entity\EjeParroquia */ public function getIdEjeParroquia() { return $this->idEjeParroquia; } public function __toString(){ return $this->getNombre(); } }