]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blob - demo/src/Dominio/Prestador.cs
ctor nuevo:
[z.facultad/75.10/miklolife.git] / demo / src / Dominio / Prestador.cs
1 using System;
2
3 namespace Dominio 
4 {
5         namespace Autorizaciones 
6         {
7                 public class Prestador
8                 {
9                         #region Constructores
10
11                         public Prestador( )
12                         {
13                         }
14
15                         public Prestador(String cuit)
16                         {
17                                 _cuit = cuit;
18                         }
19                         #endregion Constructores
20
21                         #region Campos privados
22
23                         private string _cuit;
24                         private string _password;
25                         private string _nombre;
26                         private DateTime _fechaBaja = DateTime.MinValue;
27                         private string _email;
28                         private SDireccion _direccion;
29                         private SZona _zona;
30
31                         #endregion Campos privados
32
33                         #region Propiedades públicas
34                         
35                         public string Cuit
36                         {
37                                 get { return this._cuit; }
38                                 set { this._cuit = value; }
39                         }
40
41                         public string Password
42                         {
43                                 get { return this._password; }
44                                 set { this._password = value; }
45                         }
46
47                         public string Nombre
48                         {
49                                 get { return this._nombre; }
50                                 set { this._nombre = value; }
51                         }
52
53                         public DateTime FechaBaja
54                         {
55                                 get { return this._fechaBaja; }
56                                 set { this._fechaBaja = value; }
57                         }
58
59                         public string Email
60                         {
61                                 get { return this._email; }
62                                 set { this._email = value; }
63                         }
64
65                         public SDireccion Direccion
66                         {
67                                 get { return this._direccion; }
68                                 set { this._direccion = value; }
69                         }
70
71                         public SZona Zona
72                         {
73                                 get { return this._zona; }
74                                 set { this._zona = value; }
75                         }
76
77                         #endregion Propiedades públicas
78                 }
79         }
80 }