-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInscripcion.h
46 lines (36 loc) · 1.12 KB
/
Inscripcion.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
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef INSCRIPCION_H
#define INSCRIPCION_H
#include "Date.h"
#include "OfertaLaboral.h"
#include "DataOfertaLaboral.h"
#include "Efectivizacion.h"
#include "interfaces/ICollectible.h"
class Estudiante;
class Inscripcion : public ICollectible
{
public:
Inscripcion();
Inscripcion(Date* fechaInscripcion, OfertaLaboral* ofertaLab, Estudiante* estu);
//getters
Date* getFechaInscripcion();
OfertaLaboral* getOfertaLaboral();
Estudiante* getEstudiante();
Efectivizacion* getEfectivizacion();
DataOfertaLaboral* getDataOfertaLaboral();
//setters
void setFechaInscripcion(Date* fechaInscripcion);
void setOfertaLaboral(OfertaLaboral* ofertaLab);
void setEstudiante(Estudiante* estu);
void setEfectivizacion(Efectivizacion* efe);
//operaciones
bool EstInscripto(string numExpediente);
~Inscripcion();
protected:
private:
Date* fechaInscripcion;
OfertaLaboral* ofertaLab;
Estudiante* estudiant;
Efectivizacion* efectivo;
};
#include "Estudiante.h"
#endif // INSCRIPCION_H