-
Notifications
You must be signed in to change notification settings - Fork 0
/
CLOrders.h
40 lines (37 loc) · 1.03 KB
/
CLOrders.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
#pragma once
#include "pch.h"
#include "CLCustomer.h"
namespace NS_Models {
ref class CLOrders :public Customer
{
protected:
int id_order;
System::DateTime issuing_date;
String^ orders_reference;
System::DateTime delivery_date;
int customer_id;
float total_price_df;
float total_price;
public:
void setId_order(int);
void setId_customer(int);
void setIssuing_date(System::DateTime);
void reference(String^);
void setDelivery_date(System::DateTime);
void setTotal_price(float);
void setTotal_price_df(float);
void setCustomerId(int);
int getId_order(void);
void setOrderReference(String^);
int getId_customer(void);
System::DateTime getIssuing_date(void);
String^ getOrders_Reference(void);
System::DateTime getDelivery_date(void);
float getTotal_price(void);
float getTotal_price_df(void);
virtual String^ SELECT(void) override;
virtual String^ INSERT(void) override;
virtual String^ UPDATE(void) override;
virtual String^ DELETE(void) override;
};
}