-
Notifications
You must be signed in to change notification settings - Fork 0
/
CLPeople.cpp
46 lines (39 loc) · 909 Bytes
/
CLPeople.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
#include "CLPeople.h"
NS_Models::CLPeople::CLPeople() {
this->id = 0;
this->first_name = "Default";
this->last_name = "Default";
}
void NS_Models::CLPeople::setId(int i) {
this->id = i;
}
void NS_Models::CLPeople::setFirst_name(String^ prenom) {
this->first_name = prenom;
}
void NS_Models::CLPeople::setLast_name(String^ nom) {
this->last_name = nom;
}
int NS_Models::CLPeople::getId(void) {
return this->id;
}
String^ NS_Models::CLPeople::getFirst_name(void) {
return this->first_name;
}
String^ NS_Models::CLPeople::getLast_name(void) {
return this->last_name;
}
//String^ NS_Models::CLPeople::INSERT(void) {
// return "feur";
//}
//
//String^ NS_Models::CLPeople::SELECT(void) {
// return "feur";
//}
//
//String^ NS_Models::CLPeople::UPDATE(void) {
// return "feur";
//}
//
//String^ NS_Models::CLPeople::DELETE(void) {
// return "feur";
//}