- 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; }
+ }