forked from chamilas/LinkMRP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPODeliveryShedule.cs
83 lines (59 loc) · 1.53 KB
/
PODeliveryShedule.cs
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
76
77
78
79
80
81
82
83
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
namespace SESD.MRP.REF
{
public class PODeliveryShedule
{
private int _intID;
public int ID
{
get { return _intID; }
set { _intID = value; }
}
private String _strPONO;
public String PONO
{
get { return _strPONO; }
set { _strPONO = value; }
}
private int _DeliveryID;
public int DeliveryID
{
get { return _DeliveryID; }
set { _DeliveryID = value; }
}
private String _strMaterialCode;
public String MaterialCode
{
get { return _strMaterialCode; }
set { _strMaterialCode = value; }
}
private Decimal _lngQty;
public Decimal Qty
{
get { return _lngQty; }
set { _lngQty = value; }
}
private DateTime _ExpectedDate;
public DateTime ExpectedDate
{
get { return _ExpectedDate; }
set { _ExpectedDate = value; }
}
private DateTime _ShipmentDate;
public DateTime ShipmentDate
{
get { return _ShipmentDate; }
set { _ShipmentDate = value; }
}
}
public class PODeliverySheduleCollec : CollectionBase
{
public void Add(PODeliveryShedule objPODeliveryShedule)
{
this.InnerList.Add(objPODeliveryShedule);
}
}
}