Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pragma once
- #include "Persona.h"
- class Vendedor:public Persona{
- private:
- int _nroLegajo;
- Fecha _fechaIngreso;
- int _antiguedad;
- bool _eliminado;
- public:
- Vendedor();
- Vendedor(int nroLegajo, Fecha fechaIngreso, int antiguedad, bool eliminado);
- int getNroLegajo();
- Fecha getFechaIngreso();
- int getAntiguedad();
- bool getEliminado();
- void setNroLegajo(int nroLegajo);
- void setFechaIngreso(Fecha fechaIngreso);
- void setAntiguedad(int antiguedad);
- void setEliminado(bool eliminado);
- };
Advertisement
Add Comment
Please, Sign In to add comment