]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blob - demo/src/Dominio/Autorizacion.cs
- Actualizacion de la firma de setResolucion()
[z.facultad/75.10/miklolife.git] / demo / src / Dominio / Autorizacion.cs
1
2 namespace Dominio 
3 {
4         namespace Autorizaciones 
5         {
6                 using System;
7                 using Dominio.Planes;
8
9                 #region Clase Autorizacion
10
11                 public abstract class Autorizacion
12                 {
13                         #region Campos privados
14                         
15                         private int _codigo;
16                         private float _porcentajeCobertura;
17                         private DateTime _fechaSolicitud;
18                         private DateTime _fechaRealizacion;
19                         private DateTime _fechaVencimiento;
20                         private bool _aprobada;
21                         private string _fundamentosResolucion;
22                         private Prestador _prestador;
23                         private Prestacion _prestacion;
24                         
25                         #endregion Campos privados
26
27                         #region Propiedades Públicas
28
29                         public int Codigo
30                         {
31                                 get { return this._codigo; }
32                                 set { this._codigo = value; }
33                         }
34
35                         public float PorcentajeCobertura
36                         {
37                                 get { return this._porcentajeCobertura; }
38                                 set { this._porcentajeCobertura = value; }
39                         }
40
41                         public DateTime FechaSolicitud
42                         {
43                                 get { return this._fechaSolicitud; }
44                                 set { this._fechaSolicitud = value; }
45                         }
46
47                         public DateTime FechaRealizacion
48                         {
49                                 get { return this._fechaRealizacion; }
50                                 set { this._fechaRealizacion = value; }
51                         }
52
53                         public DateTime FechaVencimiento
54                         {
55                                 get { return this._fechaVencimiento; }
56                                 set { this._fechaVencimiento = value; }
57                         }
58
59                         public bool Aprobada
60                         {
61                                 get { return this._aprobada; }
62                                 set { this._aprobada = value; }
63                         }
64
65                         public string FundamentosResolucion
66                         {
67                                 get { return this._fundamentosResolucion; }
68                                 set { this._fundamentosResolucion = value; }
69                         }
70
71                         public Prestador Prestador
72                         {
73                                 get { return this._prestador; }
74                                 set { this._prestador = value; }
75                         }
76
77                         public Prestacion Prestacion
78                         {
79                                 get { return this._prestacion; }
80                                 set { this._prestacion = value; }
81                         }       
82
83                         #endregion Propiedades Públicas
84
85                         #region Constructores
86
87                         public Autorizacion (Cobertura c, Prestador p, DateTime solicitud)
88                         {
89                                 /* TODO */
90                                 _codigo = 0;
91                                 _porcentajeCobertura = c.Porcentaje;
92                                 _fechaSolicitud = solicitud;
93                                 _aprobada = false;
94                                 _prestador = p;
95                                 _prestacion = c.Prestacion;
96                         }
97
98                         public Autorizacion (Autorizacion auth)
99                         {
100                                 _codigo = auth._codigo;
101                                 _porcentajeCobertura = auth._porcentajeCobertura;
102                                 _fechaSolicitud = auth._fechaSolicitud;
103                         }
104
105                         #endregion Constructores
106
107                         #region Métodos Públicos
108
109                         public int getEstado()
110                         {
111                                 return 0;
112                         }
113
114                         public int getEstado( DateTime fechaRecepcion )
115                         {
116                                 return 0;
117                         }
118
119                         public void setResolucion( string fundamentosResolucion, float porcentajeCobertura )
120                         {
121                         }
122                         
123                         #endregion Métodos Públicos
124                 }
125
126                 #endregion Clase Autorizacion
127
128                 #region Clases derivadas de Autorizacion
129
130                 public class AutorizacionManual : Autorizacion
131                 {
132                         #region Campos Privados
133                         
134                         private string _observaciones;
135                         private DateTime _fechaResolucion;
136                         
137                         #endregion Campos Privados
138
139                         #region Propiedades Públicas
140                         
141                         public string Observaciones
142                         {
143                                 get { return this._observaciones; }
144                                 set { this._observaciones = value; }
145                         }
146
147                         public DateTime FechaResolucion
148                         {
149                                 get { return this._fechaResolucion; }
150                                 set { this._fechaResolucion = value; }
151                         }
152
153                         #endregion Propiedades Públicas
154
155                         #region Constructores
156
157                         public AutorizacionManual (Autorizacion auth):base (auth)
158                         {
159                         }
160
161                         #endregion Constructores
162                 }
163
164                 public class AutorizacionAutomatica : Autorizacion
165                 {
166                         #region Constructores
167
168                         public AutorizacionAutomatica (Autorizacion auth):base (auth)
169                         {
170                         }
171
172                         #endregion Constructores
173                 }
174
175                 #endregion Clases derivadas de Autorizacion
176         }
177 }
178