-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathShipmentData.cs
244 lines (240 loc) · 8.39 KB
/
ShipmentData.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
#region Copyright Syncfusion® Inc. 2001-2025.
// Copyright Syncfusion® Inc. 2001-2025. All rights reserved.
// Use of this code is subject to the terms of our license.
// A copy of the current license can be obtained at any time by e-mailing
// licensing@syncfusion.com. Any infringement will be prosecuted under
// applicable laws.
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ej2_blazor_shipmentdata
{
public class ShipmentData
{
public int? ID { get; set; }
public string Name { get; set; }
public int Units { get; set; }
public string Category { get; set; }
public int UnitPrice { get; set; }
public int Price { get; set; }
public string ShipmentCategory { get; set; }
public DateTime ShippedDate { get; set; }
public DateTime OrderDate { get; set; }
public int? ParentID { get; set; }
public static List<ShipmentData> GetShipmentData()
{
List<ShipmentData> DataCollection = new List<ShipmentData>();
DataCollection.Add(new ShipmentData()
{
ID = 1,
Name = "Order 1",
Category = "Seafood",
Units = 1395,
UnitPrice = 47,
Price = 65565,
OrderDate = new DateTime(2021, 3, 2),
ShippedDate = new DateTime(2021, 9, 2),
ShipmentCategory = "Seafood",
ParentID = null
});
DataCollection.Add(new ShipmentData()
{
ID = 11,
Name = "Mackerel",
Category = "Frozen seafood",
Units = 235,
UnitPrice = 12,
Price = 2820,
OrderDate = new DateTime(2021, 3, 3),
ShippedDate = new DateTime(2021, 10, 3),
ShipmentCategory = "Frozen seafood",
ParentID = 1
});
DataCollection.Add(new ShipmentData()
{
ID = 12,
Name = "Yellowfin Tuna",
Category = "Frozen seafood",
Units = 324,
UnitPrice = 8,
Price = 2592,
OrderDate = new DateTime(2021, 3, 5),
ShippedDate = new DateTime(2021, 10, 5),
ShipmentCategory = "Frozen seafood",
ParentID = 3
});
DataCollection.Add(new ShipmentData()
{
ID = 13,
Name = "Herrings",
Category = "Frozen seafood",
Units = 488,
UnitPrice = 11,
Price = 5368,
OrderDate = new DateTime(2021, 8, 5),
ShippedDate = new DateTime(2021, 5, 15),
ShipmentCategory = "Frozen seafood",
ParentID = 1
});
DataCollection.Add(new ShipmentData()
{
ID = 14,
Name = "Preserved Olives",
Category = "Edible",
Units = 125,
UnitPrice = 9,
Price = 1125,
OrderDate = new DateTime(2021, 6, 10),
ShippedDate = new DateTime(2021, 6, 17),
ShipmentCategory = "Edible",
ParentID = 1
});
DataCollection.Add(new ShipmentData()
{
ID = 15,
Name = "Sweet corn",
Category = "Edible",
Units = 223,
UnitPrice = 7,
Price = 1561,
OrderDate = new DateTime(2021, 7, 12),
ShippedDate = new DateTime(2021, 7, 19),
ShipmentCategory = "Edible",
ParentID = 1
});
DataCollection.Add(new ShipmentData()
{
ID = 2,
Name = "Order 2",
Category = "Products",
Units = 1944,
UnitPrice = 58,
Price = 21233,
OrderDate = new DateTime(2021, 1, 10),
ShippedDate = new DateTime(2021, 1, 16),
ShipmentCategory = "Seafood",
ParentID = null
});
DataCollection.Add(new ShipmentData()
{
ID = 21,
Name = "Tilapias",
Category = "Frozen seafood",
Units = 278,
UnitPrice = 15,
Price = 4170,
OrderDate = new DateTime(2021, 2, 5),
ShippedDate = new DateTime(2021, 2, 12),
ShipmentCategory = "Frozen seafood",
ParentID = 2
});
DataCollection.Add(new ShipmentData()
{
ID = 22,
Name = "White Shrimp",
Category = "Frozen seafood",
Units = 560,
UnitPrice = 7,
Price = 3920,
OrderDate = new DateTime(2021, 5, 22),
ShippedDate = new DateTime(2021, 5, 29),
ShipmentCategory = "Frozen seafood",
ParentID = 2
});
DataCollection.Add(new ShipmentData()
{
ID = 23,
Name = "Fresh Cheese",
Category = "Dairy",
Units = 323,
UnitPrice = 12,
Price = 3876,
OrderDate = new DateTime(2021, 6, 8),
ShippedDate = new DateTime(2021, 6, 15),
ShipmentCategory = "Dairy",
ParentID = 2
});
DataCollection.Add(new ShipmentData()
{
ID = 24,
Name = "Blue Veined Cheese",
Category = "Dairy",
Units = 370,
UnitPrice = 15,
Price = 5550,
OrderDate = new DateTime(2021, 7, 10),
ShippedDate = new DateTime(2021, 7, 17),
ShipmentCategory = "Dairy",
ParentID = 2
});
DataCollection.Add(new ShipmentData()
{
ID = 25,
Name = "Butter",
Category = "Dairy",
Units = 413,
UnitPrice = 9,
Price = 3717,
OrderDate = new DateTime(2021, 9, 18),
ShippedDate = new DateTime(2021, 9, 25),
ShipmentCategory = "Dairy",
ParentID = 2
});
DataCollection.Add(new ShipmentData()
{
ID = 3,
Name = "Order 3",
Category = "Crystals",
Units = 1944,
UnitPrice = 58,
Price = 21233,
OrderDate = new DateTime(2021, 9, 10),
ShippedDate = new DateTime(2021, 9, 20),
ShipmentCategory = "Seafood",
ParentID = null
});
DataCollection.Add(new ShipmentData()
{
ID = 31,
Name = "Lead glassware",
Category = "Solid crystals",
Units = 542,
UnitPrice = 6,
Price = 3252,
OrderDate = new DateTime(2021, 2, 7),
ShippedDate = new DateTime(2021, 2, 14),
ShipmentCategory = "Solid crystals",
ParentID = 3
});
DataCollection.Add(new ShipmentData()
{
ID = 32,
Name = "Pharmaceutical glass",
Category = "Solid crystals",
Units = 324,
UnitPrice = 11,
Price = 3564,
OrderDate = new DateTime(2021, 4, 19),
ShippedDate = new DateTime(2021, 4, 26),
ShipmentCategory = "Solid crystals",
ParentID = 3
});
DataCollection.Add(new ShipmentData()
{
ID = 33,
Name = "Glass beads",
Category = "Solid crystals",
Units = 254,
UnitPrice = 16,
Price = 4064,
OrderDate = new DateTime(2021, 5, 22),
ShippedDate = new DateTime(2021, 3, 22),
ShipmentCategory = "Solid crystals",
ParentID = 3
});
return DataCollection;
}
}
}