From 0cfc1e2569025bdff6dcc41e8c6501561ae93a70 Mon Sep 17 00:00:00 2001 From: Wilmer Date: Wed, 1 Mar 2017 08:43:32 -0400 Subject: [PATCH] =?UTF-8?q?a=C3=B1adida=20la=20entidad=20de=20tipo=20de=20?= =?UTF-8?q?documentos=20para=20la=20verificacion=20de=20los=20documentos?= =?UTF-8?q?=20subidos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/AppBundle/Entity/TipoDocumentos.php | 84 +++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 src/AppBundle/Entity/TipoDocumentos.php diff --git a/src/AppBundle/Entity/TipoDocumentos.php b/src/AppBundle/Entity/TipoDocumentos.php new file mode 100644 index 0000000..632b196 --- /dev/null +++ b/src/AppBundle/Entity/TipoDocumentos.php @@ -0,0 +1,84 @@ +nombre = $nombre; + + return $this; + } + + /** + * Get nombre + * + * @return string + */ + public function getNombre() + { + return $this->nombre; + } + + /** + * Get id + * + * @return integer + */ + public function getId() + { + return $this->id; + } + + /** + * Get nombre + * + * @return string + */ + public function __toString() + { + return $this->nombre; + } + + +} -- 2.0.0