-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEncargado.cpp
79 lines (66 loc) · 1.41 KB
/
Encargado.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
#include "Encargado.h"
Encargado::Encargado()
{
this->cedula = '\0';
this->nombre = '\0';
this->apellido = '\0';
this->fechaNacimiento = NULL;
}
Encargado::Encargado(string cedula, string nombre, string apellido, Date* fechaNacimiento)
{
this->cedula = cedula;
this->nombre = nombre;
this->apellido = apellido;
this->fechaNacimiento = fechaNacimiento;
}
Encargado::Encargado(const Encargado &e)
{
this->cedula = e.cedula;
this->nombre= e.nombre;
this->apellido= e.apellido;
this->fechaNacimiento= e.fechaNacimiento;
}
DataEncargado *Encargado::getDataEncargado()
{
return new DataEncargado(this->cedula, this->nombre, this->apellido, this->fechaNacimiento);
}
string Encargado::getCedula()
{
return this->cedula;
}
string Encargado::getNombre()
{
return this->nombre;
}
string Encargado::getApellido()
{
return this->apellido;
}
void Encargado::setCedula(string cedula)
{
this->cedula = cedula;
}
void Encargado::setNombre(string nombre)
{
this->nombre = nombre;
}
void Encargado::setApellido(string apellido)
{
this->apellido = apellido;
}
Date* Encargado::getFechaNacimiento()
{
return this->fechaNacimiento;
}
void Encargado::setFechaNacimiento(Date* fechaNacimiento)
{
this->fechaNacimiento= fechaNacimiento;
}
Encargado::~Encargado()
{
//dtor
if ((this->fechaNacimiento)!= NULL)
{
delete ((this->fechaNacimiento));
}
}