5 namespace Autorizaciones
15 public Prestador(String cuit)
19 #endregion Constructores
21 #region Campos privados
24 private string _password;
25 private string _nombre;
26 private DateTime _fechaBaja = DateTime.MinValue;
27 private string _email;
28 private SDireccion _direccion;
31 #endregion Campos privados
33 #region Propiedades públicas
37 get { return this._cuit; }
38 set { this._cuit = value; }
41 public string Password
43 get { return this._password; }
44 set { this._password = value; }
49 get { return this._nombre; }
50 set { this._nombre = value; }
53 public DateTime FechaBaja
55 get { return this._fechaBaja; }
56 set { this._fechaBaja = value; }
61 get { return this._email; }
62 set { this._email = value; }
65 public SDireccion Direccion
67 get { return this._direccion; }
68 set { this._direccion = value; }
73 get { return this._zona; }
74 set { this._zona = value; }
77 #endregion Propiedades públicas