diff --git a/src/AppBundle/Entity/InstitucionAsociada.php b/src/AppBundle/Entity/InstitucionAsociada.php deleted file mode 100644 index 819bc4b..0000000 --- a/src/AppBundle/Entity/InstitucionAsociada.php +++ /dev/null @@ -1,150 +0,0 @@ -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; - } -}