]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Dominio/Prestador.cs
Bocha de cosas difíciles y largas de explicar :P
[z.facultad/75.10/miklolife.git] / demo / src / Dominio / Prestador.cs
index 8389f40e013293c5e7d0fc3b4041dc3d4298ef06..a1ab69d4995a3e8b126cc006d07ddfcb04af77f2 100644 (file)
@@ -1,18 +1,76 @@
-namespace Dominio {
-namespace Autorizaciones {
-
 using System;
 
 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