-
Notifications
You must be signed in to change notification settings - Fork 0
/
CL_map_TBFACTURE.h
75 lines (60 loc) · 2.09 KB
/
CL_map_TBFACTURE.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#pragma once
using namespace System;
namespace NS_Composants
{
ref class CL_map_TBFACTURE
{
public:
// Constructeur par defaut
CL_map_TBFACTURE();
// 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 setnumfact(int);
void setnomSociete(String^);
void setadresSociete(String^);
void setNumeroServiceClient(String^);
void setLogoSociete(String^);
void setNomclient(String^);
void setCodeClient(String^);
void setadressLivraison(String^);
void setadressFacturation(String^);
void setmontantTotalHT(String^);
void setmontantTotalTVA(String^);
void setmontantTotalTTC(String^);
void setTotalArticles(String^);
int getnumfact();
String^ getnomSociete();
String^ getadresSociete();
String^ getNumeroServiceClient();
String^ getLogoSociete();
String^ getNomclient();
String^ getCodeClient();
String^ getadressLivraison();
String^ getadressFacturation();
String^ getmontantTotalHT();
String^ getmontantTotalTVA();
String^ getmontantTotalTTC();
String^ getTotalArticles();
private:
int numero_facture;
String^ nom_societe;
String^ adresse_societe;
String^ numeros_service_client;
String^ logo_societe;
String^ nom_client;
String^ code_client;
String^ adresse_livraison;
String^ adresse_facturation;
String^ montant_total_achete;
String^ montant_total_tva;
String^ montant_total_ttc;
String^ total_article;
};
}