-
Notifications
You must be signed in to change notification settings - Fork 0
/
CLEmployee.h
37 lines (32 loc) · 878 Bytes
/
CLEmployee.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
#pragma once
#include "pch.h"
#include "CLPeople.h"
namespace NS_Models {
ref class Employee:public CLPeople
{
private:
int upper_hierarchy_id;
String^ hiring_date;
String^ rank;
String^ password;
String^ email;
public:
void setEmployeeUpperHierarchy(int);
void setEmployeeHiringDate(String^);
void setEmployeeRank(String^);
void setEmployeePassword(String^);
void setEmployeeEmail(String^);
void setEmplyeeID(int);
int getEmployee(void);
int getUpper_hierarchy_id(void);
String^ getHiring_date(void);
String^ getRank(void);
String^ getPassword(void);
String^ getEmail(void);
String^ selectCon(String^ email, String^ password);
virtual String^ SELECT(void) override;
virtual String^ INSERT(void) override;
virtual String^ UPDATE(void) override;
virtual String^ DELETE(void) override;
};
}