From 3c2af6088aee9b65acfdeed3d825f57c498aa478 Mon Sep 17 00:00:00 2001 From: Wilmer Date: Thu, 4 May 2017 10:52:17 -0400 Subject: [PATCH] =?UTF-8?q?elimina=20la=20institucion=20asociada=20debido?= =?UTF-8?q?=20a=20que=20ya=20existe=20la=20logica=20para=20la=20asociaci?= =?UTF-8?q?=C3=B3n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/AppBundle/Entity/InstitucionAsociada.php | 150 --------------------------- 1 file changed, 150 deletions(-) delete mode 100644 src/AppBundle/Entity/InstitucionAsociada.php 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; - } -} -- 2.0.0