-
Notifications
You must be signed in to change notification settings - Fork 0
/
C_Command.h
61 lines (52 loc) · 1.05 KB
/
C_Command.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
#pragma once
#include "pch.h"
#include "AccederAuxDonnées.h"
#include "S_Adresse.h"
using namespace Services;
namespace Composants {
ref class C_Command{
private:
int idCommand;
int idPerson;
int idDiscount;
String^ orderDate;
String^ validDate;
double prixHT;
double prixTTC;
int Tva;
int param;
String^ modif;
String^ valeur;
public:
C_Command();
String^ insert();
String^ delet();
String^ update();
String^ select();
String^ calculPrixHt();
String^ calulPrixTtc();
String^ maxIdCommande();
void setIdCommand(int);
void setIdPerson(int);
void setIdDiscount(int);
void setOrderDate(String^);
void setValidDate(String^);
void setPrixHT(double);
void setPrixTTC(double);
void setTVA(int);
int getIdCommand();
int getIdPerson();
int getIdDiscount();
String^ getOrderDate();
String^ getValidDate();
double getPrixHT();
double getPrixTTC();
int getTVA();
void setParam(int);
int getParam();
void setModif(String^);
String^ getModif();
void setValeur(String^);
String^ getValeur();
};
}