From eb3305bd00eba9b8ab535c32df0320729b2df116 Mon Sep 17 00:00:00 2001 From: Wilmer Ramones Date: Tue, 19 Jul 2016 08:55:14 -0400 Subject: [PATCH] Creada la entidad de tipo de uc (obligatoria, electiva...) --- src/AppBundle/Entity/TipoUc.php | 75 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 src/AppBundle/Entity/TipoUc.php diff --git a/src/AppBundle/Entity/TipoUc.php b/src/AppBundle/Entity/TipoUc.php new file mode 100644 index 0000000..2ad0e24 --- /dev/null +++ b/src/AppBundle/Entity/TipoUc.php @@ -0,0 +1,75 @@ +nombre = $nombre; + + return $this; + } + + /** + * Get nombre + * + * @return string + */ + public function getNombre() + { + return $this->nombre; + } + + /** + * Get id + * + * @return integer + */ + public function getId() + { + return $this->id; + } + + /** + * + * @return string + */ + + public function __toString() { + return $this->getNombre(); + } +} -- 2.0.0