5 namespace Autorizaciones
15 #endregion Constructores
17 #region Campos privados
20 private string _password;
21 private string _nombre;
22 private DateTime _fechaBaja = DateTime.MinValue;
23 private string _email;
24 private SDireccion _direccion;
27 #endregion Campos privados
29 #region Propiedades públicas
33 get { return this._cuit; }
34 set { this._cuit = value; }
37 public string Password
39 get { return this._password; }
40 set { this._password = value; }
45 get { return this._nombre; }
46 set { this._nombre = value; }
49 public DateTime FechaBaja
51 get { return this._fechaBaja; }
52 set { this._fechaBaja = value; }
57 get { return this._email; }
58 set { this._email = value; }
61 public SDireccion Direccion
63 get { return this._direccion; }
64 set { this._direccion = value; }
69 get { return this._zona; }
70 set { this._zona = value; }
73 #endregion Propiedades públicas