diff --git a/src/AppBundle/Entity/InstitucionAsociada.php b/src/AppBundle/Entity/InstitucionAsociada.php new file mode 100644 index 0000000..819bc4b --- /dev/null +++ b/src/AppBundle/Entity/InstitucionAsociada.php @@ -0,0 +1,150 @@ +getNombre(); + } + + + + /** + * Set nombre + * + * @param string $nombre + * @return InstitucionAsociada + */ + public function setNombre($nombre) + { + $this->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 idInstitucionCentral + * + * @param \AppBundle\Entity\Institucion $idInstitucionCentral + * @return InstitucionAsociada + */ + public function setIdInstitucionCentral(\AppBundle\Entity\Institucion $idInstitucionCentral) + { + $this->idInstitucionCentral = $idInstitucionCentral; + + return $this; + } + + /** + * Get idInstitucionCentral + * + * @return \AppBundle\Entity\Institucion + */ + public function getIdInstitucionCentral() + { + return $this->idInstitucionCentral; + } + + /** + * Set idInstitucionAsociada + * + * @param \AppBundle\Entity\Institucion $idInstitucionAsociada + * @return InstitucionAsociada + */ + public function setIdInstitucionAsociada(\AppBundle\Entity\Institucion $idInstitucionAsociada) + { + $this->idInstitucionAsociada = $idInstitucionAsociada; + + return $this; + } + + /** + * Get idInstitucionAsociada + * + * @return \AppBundle\Entity\Institucion + */ + public function getIdInstitucionAsociada() + { + return $this->idInstitucionAsociada; + } +}