From 148a39082642a986a6cfb570aa4585a0c5fc379d Mon Sep 17 00:00:00 2001 From: Guillermo Rugilo Date: Sun, 26 Jun 2005 20:55:24 +0000 Subject: [PATCH] =?utf8?q?ouch!=20me=20hab=C3=ADa=20faltado=20el=20Cuit=20?= =?utf8?q?y=20el=20Password...?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- demo/src/Dominio/Prestador.cs | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/demo/src/Dominio/Prestador.cs b/demo/src/Dominio/Prestador.cs index 35ec06c..a1ab69d 100644 --- a/demo/src/Dominio/Prestador.cs +++ b/demo/src/Dominio/Prestador.cs @@ -16,7 +16,8 @@ namespace Dominio #region Campos privados - private string _codigo; + private string _cuit; + private string _password; private string _nombre; private DateTime _fechaBaja = DateTime.MinValue; private string _email; @@ -27,10 +28,16 @@ namespace Dominio #region Propiedades públicas - public string Codigo + public string Cuit { - get { return this._codigo; } - set { this._codigo = value; } + get { return this._cuit; } + set { this._cuit = value; } + } + + public string Password + { + get { return this._password; } + set { this._password = value; } } public string Nombre -- 2.43.0