-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEntrevista.h
34 lines (28 loc) · 857 Bytes
/
Entrevista.h
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
#ifndef ENTREVSTA_H
#define ENTREVSTA_H
#include "Date.h"
#include "OfertaLaboral.h"
#include "DataOfertaLaboral.h"
#include "Estudiante.h"
#include "interfaces/ICollectible.h"
class Entrevista : public ICollectible
{
private:
Date* fechaEntrevista;
OfertaLaboral* ofertaLab;
Estudiante* estudiant;
public:
Entrevista();
Entrevista(Date* fechaEntrevista, OfertaLaboral* ofertaLab, Estudiante* estu);
//Entrevista(const Entrevista &i);
//getters
Date* getFechaEntrevista();
OfertaLaboral* getOfertaLaboral();
Estudiante* getEstudiante();
//setters
void setFechaEntrevista(Date* fechaEntrevista);
void setOfertaLaboral(OfertaLaboral* ofertaLab);
void setEstudiante(Estudiante* estu);
~Entrevista();
};
#endif // Entrevista_H