-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOrders.cs
More file actions
56 lines (46 loc) · 1.81 KB
/
Copy pathOrders.cs
File metadata and controls
56 lines (46 loc) · 1.81 KB
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
using DevExpress.Xpo;
namespace DxGrid.BindToDataUsingXPO.WebAPI.Data;
public class Orders(Session session) : XPBaseObject(session) {
[Key, Persistent("OrderID")]
public int ID;
private DateTime orderDate;
public DateTime OrderDate {
get => orderDate;
set => SetPropertyValue(nameof(OrderDate), ref orderDate, value);
}
private DateTime expectedDeliveryDate;
public DateTime ExpectedDeliveryDate {
get => expectedDeliveryDate;
set => SetPropertyValue(nameof(ExpectedDeliveryDate), ref expectedDeliveryDate, value);
}
private bool isUndersupplyBackordered;
public bool IsUndersupplyBackordered {
get => isUndersupplyBackordered;
set => SetPropertyValue(nameof(IsUndersupplyBackordered), ref isUndersupplyBackordered, value);
}
private string? customerPurchaseOrderNumber;
public string? CustomerPurchaseOrderNumber {
get => customerPurchaseOrderNumber;
set => SetPropertyValue(nameof(CustomerPurchaseOrderNumber), ref customerPurchaseOrderNumber, value);
}
private DateTime? pickingCompletedWhen;
public DateTime? PickingCompletedWhen {
get => pickingCompletedWhen;
set => SetPropertyValue(nameof(PickingCompletedWhen), ref pickingCompletedWhen, value);
}
private int? customerID;
public int? CustomerID {
get => customerID;
set => SetPropertyValue(nameof(CustomerID), ref customerID, value);
}
private int? salesPersonID;
public int? SalesPersonID {
get => salesPersonID;
set => SetPropertyValue(nameof(SalesPersonID), ref salesPersonID, value);
}
private int? contactPersonID;
public int? ContactPersonID {
get => contactPersonID;
set => SetPropertyValue(nameof(ContactPersonID), ref contactPersonID, value);
}
}