-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCL_map_TBPERSONNEL.h
53 lines (39 loc) · 1.3 KB
/
CL_map_TBPERSONNEL.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
47
48
49
50
51
52
53
#pragma once
using namespace System;
namespace NS_Composants
{
ref class CL_map_TBPERSONNEL
{
public:
// Constructeur par defaut
CL_map_TBPERSONNEL();
// retourne le commande pour selectionner une personne dans la bdd
String^ SELECT();
// retourne le commande pour ajouter une personne dans la bdd
String^ INSERT();
// retourne le commande pour mettre à jour une personne dans la bdd
String^ UPDATE();
// retourne le commande pour suppprimer une personne dans la bdd
String^ DELETE();
// Accesseurs et setters classique de donnees
void setNumPersonnel(int);
void setPrenomPersonnel(String^);
void setNomPersonnel(String^);
void setAdresse(String^);
void setDateEmbauche(String^);
void setSupHier(String^);
int getNumPersonnel();
String^ getPrenomPersonnel();
String^ getNomPersonnel();
String^ getAdresse();
String^ getDateEmbauche();
String^ getSupHier();
private:
int numero_personnel;
String^ nom_personnel;
String^ prenom_personnel;
String^ addresse;
String^ dateEmbauche;
String^ superieur_hierarchique;
};
}