-
Notifications
You must be signed in to change notification settings - Fork 3
/
Order.cs
217 lines (184 loc) · 5.34 KB
/
Order.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
using System;
using System.Collections.Generic;
using System.Linq;
using Newtonsoft.Json.Linq;
namespace ClassLibrary4
{
public class Order
{
private readonly JObject document;
public Order(int orderNumber)
: this(new JObject())
{
OrderNumber = orderNumber;
}
public Order(JObject document)
{
this.document = document;
}
public int OrderNumber
{
get { return document.Value<int>("OrderNumber"); }
private set { document["OrderNumber"] = value; }
}
public int Table
{
get { return document.Value<int>("Table"); }
set { document["Table"] = value; }
}
public string Waiter
{
get { return document.Value<string>("Waiter"); }
set { document["Waiter"] = value; }
}
public DateTime? CookedOn
{
get
{
var cookedOn = document["CookedOn"];
return cookedOn == null
? default(DateTime?)
: (DateTime)cookedOn;
}
set
{
document["CookedOn"] = value;
}
}
public JObject Receipt
{
get { return document["Receipt"].ToObject<JObject>(); }
set { document["Receipt"] = value; }
}
public bool Paid
{
get { return document["Receipt"] != null; }
}
public decimal Total
{
get
{
var total = document["Total"];
return total == null
? 0m
: (decimal) total;
}
set { document["Total"] = value; }
}
public decimal Subtotal
{
get
{
return Items.Sum(i => i.Price ?? 0m);
}
}
public decimal Tax
{
get
{
var tax = document["Tax"];
return tax == null
? 0m
: (decimal) tax;
}
set
{
document["Tax"] = value;
}
}
public decimal Tip
{
get
{
var tax = document["Tip"];
return tax == null
? 0m
: (decimal)tax;
}
set
{
document["Tip"] = value;
}
}
public void Add(Item item)
{
var items = (JArray)document["Items"];
if (items == null)
{
document["Items"] = items = new JArray();
}
items.Add((JObject)item);
}
public IEnumerable<Item> Items
{
get
{
var items = (JArray)document["Items"];
if (items == null) return Enumerable.Empty<Item>();
return from item in items.OfType<JObject>()
select new Item(item);
}
}
public DateTime TookOrderOn
{
get { return document.Value<DateTime>("TookOrderOn"); }
set { document["TookOrderOn"] = value; }
}
public string Chef
{
get { return document.Value<string>("Chef"); }
set { document["Chef"] = value; }
}
public class Item
{
private readonly JObject document;
public Item(JObject document)
{
this.document = document;
}
public Item(string plate, int quantity, decimal? price = null)
: this(new JObject
{
{"Plate", plate},
{"Quantity", quantity},
{"Price", price},
{"Ingredients", ""}
})
{
}
public static implicit operator JObject(Item item)
{
return item.document;
}
public string Plate
{
get { return document.Value<string>("Plate"); }
set { document["Plate"] = value; }
}
public string[] Ingredients
{
get { return document.Value<string>("Ingredients").Split(','); }
set { document["Ingredients"] = String.Join(",", value); }
}
public int Quantity
{
get { return document.Value<int>("Quantity"); }
set { document["Quantity"] = value; }
}
public decimal? Price
{
get
{
var price = document["Price"];
return price == null
? default(decimal?)
: (decimal) price;
}
set
{
document["Price"] = value;
}
}
}
}
}