X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/c36c16908f73901f367fe523aeef8dfb688ac2ff..b674f20b66a5a72d55c80bb6d14bd3b673013442:/demo/src/Dominio/Prestador.cs?ds=inline diff --git a/demo/src/Dominio/Prestador.cs b/demo/src/Dominio/Prestador.cs index 8389f40..a1ab69d 100644 --- a/demo/src/Dominio/Prestador.cs +++ b/demo/src/Dominio/Prestador.cs @@ -1,18 +1,76 @@ -namespace Dominio { -namespace Autorizaciones { - using System; -public class Prestador +namespace Dominio { - private string _codigo; - private string _nombre; - private DateTime _fechaBaja; - private string _email; - private SDireccion _direccion; - private SZona _zona; -} + namespace Autorizaciones + { + public class Prestador + { + #region Constructores + + public Prestador( ) + { + } + + #endregion Constructores + + #region Campos privados + + private string _cuit; + private string _password; + private string _nombre; + private DateTime _fechaBaja = DateTime.MinValue; + private string _email; + private SDireccion _direccion; + private SZona _zona; + + #endregion Campos privados + + #region Propiedades públicas + + public string Cuit + { + get { return this._cuit; } + set { this._cuit = value; } + } + + public string Password + { + get { return this._password; } + set { this._password = value; } + } + + public string Nombre + { + get { return this._nombre; } + set { this._nombre = value; } + } + + public DateTime FechaBaja + { + get { return this._fechaBaja; } + set { this._fechaBaja = value; } + } + + public string Email + { + get { return this._email; } + set { this._email = value; } + } + + public SDireccion Direccion + { + get { return this._direccion; } + set { this._direccion = value; } + } -} -} + public SZona Zona + { + get { return this._zona; } + set { this._zona = value; } + } + #endregion Propiedades públicas + } + } +} \ No newline at end of file