-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEstudiante.cpp
331 lines (284 loc) · 7.36 KB
/
Estudiante.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
#include "Estudiante.h"
Estudiante::Estudiante()
{
//ctor
this->cedula = '\0';
this->nombre = '\0';
this->apellido = '\0';
this->telefono = '\0';
this->fechaNacimiento = NULL;
this->creditos = 0;
this->email = '\0';
this->carreras = new OrderedDictionary();
this->aprobadas= new List();
this->inscripciones = new List();
this->entrevistas = new List();
this->notificaciones = new List();
}
Estudiante::Estudiante(string cedula,string nombre,string apellido, string telefono, Date* fechaNacimiento, int creditos,
string email, IDictionary* carreras, ICollection* aprobadas, ICollection* inscripciones, ICollection* entrevistas,
ICollection* notificaciones)
{
this->cedula = cedula;
this->nombre = nombre;
this->apellido = apellido;
this->telefono = telefono;
this->fechaNacimiento = fechaNacimiento;
this->creditos = creditos;
this->email = email;
if (carreras != NULL) {
this->carreras = carreras;
} else {
this->carreras = new OrderedDictionary();
}
if (aprobadas != NULL) {
this->aprobadas = aprobadas;
} else {
this->aprobadas = new List();
}
if (inscripciones != NULL) {
this->inscripciones = inscripciones;
} else {
this->inscripciones = new List();
}
if (entrevistas != NULL) {
this->entrevistas = entrevistas;
} else {
this->entrevistas = new List();
}
if (notificaciones != NULL) {
this->notificaciones = notificaciones;
} else {
this->notificaciones = new List();
}
}
Estudiante::Estudiante(const Estudiante &e)
{
this->cedula = e.cedula;
this->nombre = e.nombre;
this->apellido = e.apellido;
this->telefono = e.telefono;
this->fechaNacimiento = e.fechaNacimiento;
this->creditos = e.creditos;
this->email = e.email;
this->carreras = e.carreras;
this->aprobadas = e.aprobadas;
this->inscripciones = e.inscripciones;
this->entrevistas = e.entrevistas;
this->notificaciones = e.notificaciones;
}
string Estudiante::getCedula()
{
return this->cedula;
}
string Estudiante::getNombre()
{
return this->nombre;
}
string Estudiante::getApellido()
{
return this->apellido;
}
string Estudiante::getTelefono()
{
return this->telefono;
}
Date* Estudiante::getFechaNacimiento()
{
return this->fechaNacimiento;
}
int Estudiante::getCreditos()
{
return this->creditos;
}
string Estudiante::getEmail()
{
return this->email;
}
IDictionary* Estudiante::getCarreras()
{
return this->carreras;
}
ICollection* Estudiante::getAprobadas()
{
return this->aprobadas;
}
ICollection* Estudiante::getInscripciones()
{
return this->inscripciones;
}
ICollection* Estudiante::getEntrevistas()
{
return this->entrevistas;
}
ICollection* Estudiante::getNotificaciones()
{
return this->notificaciones;
}
void Estudiante::setCedula(string cedula)
{
this->cedula = cedula;
}
void Estudiante::setNombre(string nombre)
{
this->nombre = nombre;
}
void Estudiante::setApellido(string apellido)
{
this->apellido = apellido;
}
void Estudiante::setTelefono(string telefono)
{
this->telefono = telefono;
}
void Estudiante::setFechaNacimiento(Date* fechaNacimiento)
{
this->fechaNacimiento = fechaNacimiento;
}
void Estudiante::setCreditos(int creditos)
{
this->creditos = creditos;
}
void Estudiante::setEmail(string email)
{
this->email = email;
}
DataEstudiante* Estudiante::getDataEstudiante()
{
try
{
//Se obtiene la coleccion de DataEstudiante
DataEstudiante* dataEstudiante = new DataEstudiante(this->cedula, this->nombre, this->apellido, this->telefono,
this->fechaNacimiento, this->creditos, this->email, this->carreras, this->aprobadas, this->inscripciones , this->entrevistas);
return dataEstudiante;
}
catch (const char* e)
{
throw;
}
}
bool Estudiante::EstNoInscripto(string numExpediente)
{
try
{
bool res;
bool noEstaInscripto = true;
IIterator * lIt = this->inscripciones->getIterator();
while(lIt->hasCurrent() && (noEstaInscripto))
{
Inscripcion *insc;
if( (insc = dynamic_cast<Inscripcion*> (lIt->getCurrent())) != NULL )
{
res = insc->EstInscripto(numExpediente);
if (res)
{
noEstaInscripto = false;
}
} else
{
throw "Estudiante -> El objeto no es de la clase Inscripcion.";
}
lIt->next();
}
delete lIt;
return noEstaInscripto;
}
catch (const char* e)
{
throw;
}
}
bool Estudiante::EstInscripto(string numExpediente)
{
try
{
bool res;
bool estaInscripto = false;
IIterator * lIt = this->inscripciones->getIterator();
while(lIt->hasCurrent() && (!estaInscripto))
{
Inscripcion *insc;
if( (insc = dynamic_cast<Inscripcion*> (lIt->getCurrent())) != NULL )
{
res = insc->EstInscripto(numExpediente);
if (res)
{
estaInscripto = true;
return estaInscripto;
}
} else
{
throw "Estudiante -> El objeto no es de la clase Inscripcion.";
}
lIt->next();
}
delete lIt;
return estaInscripto;
}
catch (const char* e)
{
throw;
}
}
void Estudiante::AsociarInscripcion (Inscripcion *insc)
{
this->inscripciones->add(insc);
}
void Estudiante::AsociarEntrevista (Entrevista *ent)
{
this->entrevistas->add(ent);
}
DataDatosEstudiante* Estudiante::getDataDatosEstudiante()
{
try
{
//Se obtiene la coleccion de DataAprobada
List* dataAprobadas = new List();
IIterator * lIt = this->aprobadas->getIterator();
while(lIt->hasCurrent())
{
Aprobacion *apro;
if( (apro = dynamic_cast<Aprobacion*> (lIt->getCurrent())) != NULL )
{
dataAprobadas->add(apro->getDataAprobada());
} else
{
throw "Estudiante -> El objeto no es de la clase Aprobacion.";
}
lIt->next();
}
delete lIt;
List* dataOfertasEmpresas = new List();
IIterator * lIt2 = this->inscripciones->getIterator();
while(lIt2->hasCurrent())
{
Inscripcion *insc;
if( (insc = dynamic_cast<Inscripcion*> (lIt2->getCurrent())) != NULL )
{
dataOfertasEmpresas->add(insc->getDataOfertaLaboral());
} else
{
throw "Estudiante -> El objeto no es de la clase Inscripcion.";
}
lIt2->next();
}
delete lIt2;
DataDatosEstudiante* datosEstudiante = new DataDatosEstudiante(dataAprobadas, dataOfertasEmpresas);
return datosEstudiante;
}
catch (const char* e)
{
throw;
}
}
void Estudiante::enviarMail(string numExpediente)
{
String* nExp = new String(numExpediente.c_str());
this->notificaciones->add(nExp);
}
Estudiante::~Estudiante()
{
//dtor
if (this->fechaNacimiento != NULL)
delete this->fechaNacimiento;
}