-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDataEstudiante.cpp
93 lines (79 loc) · 1.95 KB
/
DataEstudiante.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
#include "DataEstudiante.h"
#include "collections/OrderedDictionary.h"
#include "collections/List.h"
DataEstudiante::DataEstudiante(string cedula, string nombre, string apellido, string telefono, Date *fechaNacimiento,
int creditos, string email, IDictionary* carreras, ICollection* aprobadas, ICollection* inscripciones, ICollection* entrevistas)
{
this->cedula = cedula;
this->nombre = nombre;
this->apellido = apellido;
this->telefono = telefono;
this->fechaNacimiento = fechaNacimiento;
this->creditos = creditos;
this->email = email;
this->carreras = carreras;
this->aprobadas = aprobadas;
this->inscripciones = inscripciones;
this->entrevistas = entrevistas;
}
DataEstudiante::DataEstudiante(const DataEstudiante &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;
}
string DataEstudiante::getCedula()
{
return this->cedula;
}
string DataEstudiante::getNombre()
{
return this->nombre;
}
string DataEstudiante::getApellido()
{
return this->apellido;
}
string DataEstudiante::getTelefono()
{
return this->telefono;
}
Date *DataEstudiante::getFechaNacimiento()
{
return this->fechaNacimiento;
}
int DataEstudiante::getCreditos()
{
return this->creditos;
}
string DataEstudiante::getEmail()
{
return this->email;
}
IDictionary* DataEstudiante::getCarreras()
{
return this->carreras;
}
ICollection* DataEstudiante::getAprobadas()
{
return this->aprobadas;
}
ICollection* DataEstudiante::getInscripciones()
{
return this->inscripciones;
}
ICollection* DataEstudiante::getEntrevistas()
{
return this->inscripciones;
}
DataEstudiante::~DataEstudiante()
{
if (this->fechaNacimiento !=NULL)
delete this->fechaNacimiento;
}