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(); + } +}