-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathTableDao.cs
390 lines (343 loc) · 15.8 KB
/
TableDao.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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using HCSMS.Model;
using HCSMS.Model.Application;
namespace HCSMS.DataAccess
{
public static class TableDao
{
public static DinningTable GetDinningTable(string tableNumber)
{
using (SqlConnection conn = Utilities.GetConnection())
{
SqlCommand comm = new SqlCommand("select Id, GuestAmount, ArrivedTime, Note from TableInUse where TableId= @tableNumber ", conn);
comm.Parameters.Add("@tableNumber", SqlDbType.Char, 10);
comm.Parameters["@tableNumber"].Value = tableNumber;
try
{
conn.Open();
SqlDataReader reader = comm.ExecuteReader();
if (reader.Read())
{
return covertToDinningTable(reader["ID"].ToString(), reader.GetInt32(1), reader.GetDateTime(2), reader["Note"].ToString());
}
else
return null;
}
catch (SqlException sqlException)
{
throw new HCSMSException(sqlException.Message);
}
finally
{
if (conn != null)
{
conn.Close();
}
}
}
}
public static List<Table> GetAvailableTable()
{
List<Table> tableList = new List<Table>();
using (SqlConnection conn = Utilities.GetConnection())
{
SqlCommand comm = new SqlCommand(@"select [Table].Id, Location, [Table].Name, SeatAmount, Status, TableType.Name as Type
from [Table], TableType
where ( [Table].Id not in (select TableId from TableInUse))
and ([Table].Id not in (select TableId from ReservationTable, CustomerReservation
where DATEADD(hour, 2, ArrivedTime)>=GetDate()
and ReservationTable.CustomerReservationId = CustomerReservation.Id))
and [Table].TableTypeId = TableType.Id", conn);
try
{
conn.Open();
SqlDataReader reader = comm.ExecuteReader();
while (reader.Read())
{
tableList.Add(convertToTable(reader["ID"].ToString(), reader["Location"].ToString(), reader["Name"].ToString(), reader.GetInt32(3), reader["Status"].ToString(), reader["Type"].ToString()));
}
return tableList;
}
catch (SqlException sqlException)
{
throw new HCSMSException(sqlException.Message);
}
finally
{
if (conn != null)
{
conn.Close();
}
}
}
}
public static List<Table> GetAvailablePreorderTable(DateTime reserveDate)
{
List<Table> tableList = new List<Table>();
using (SqlConnection conn = Utilities.GetConnection())
{
SqlCommand comm = new SqlCommand(@"select [Table].Id, Location, [Table].Name, SeatAmount, Status, TableType.Name as Type
from [Table], TableType
where ( [Table].Id not in (select TableId from ReservationTable, CustomerReservation
where DATEADD(hour, 2, ArrivedTime)>=@reserveDate
and ReservationTable.CustomerReservationId = CustomerReservation.Id)
and [Table].TableTypeId = TableType.Id", conn);
comm.Parameters.Add("@reserveDate", SqlDbType.DateTime);
comm.Parameters["@reserveDate"].Value = reserveDate;
try
{
conn.Open();
SqlDataReader reader = comm.ExecuteReader();
while (reader.Read())
{
tableList.Add(convertToTable(reader["ID"].ToString(), reader["Location"].ToString(), reader["Name"].ToString(), reader.GetInt32(3), reader["Status"].ToString(), reader["Type"].ToString()));
}
return tableList;
}
catch (SqlException sqlException)
{
throw new HCSMSException(sqlException.Message);
}
finally
{
if (conn != null)
{
conn.Close();
}
}
}
}
public static List<Table> GetTableInReserve(string reserveId)
{
List<Table> tableList = new List<Table>();
using (SqlConnection conn = Utilities.GetConnection())
{
SqlCommand comm = new SqlCommand(@"select [Table].Id, Location, [Table].Name, SeatAmount, Status, TableType.Name as Type
from [Table], TableType, ReservationTable
where [Table].Id = ReservationTable.TableId
and [Table].TableTypeId = TableType.Id
and ReservationTable.CustomerReservationId = @reserveId", conn);
comm.Parameters.Add("@reserveId", SqlDbType.Char, 10);
comm.Parameters["@reserveId"].Value = reserveId;
try
{
conn.Open();
SqlDataReader reader = comm.ExecuteReader();
while (reader.Read())
{
tableList.Add(convertToTable(reader["ID"].ToString(), reader["Location"].ToString(), reader["Name"].ToString(), reader.GetInt32(3), reader["Status"].ToString(), reader["Type"].ToString()));
}
return tableList;
}
catch (SqlException sqlException)
{
throw new HCSMSException(sqlException.Message);
}
finally
{
if (conn != null)
{
conn.Close();
}
}
}
}
public static Table GetTable(string tableNumber)
{
using (SqlConnection conn = Utilities.GetConnection())
{
SqlCommand comm = new SqlCommand(@"select [Table].Id, Location, [Table].Name, SeatAmount, Status, TableType.Name as Type
from [Table], TableType
where and [Table].TableTypeId = TableType.Id
and [Table].Id = @tableId", conn);
comm.Parameters.Add("@tableId", SqlDbType.Char, 10);
comm.Parameters["@tableId"].Value = tableNumber;
try
{
conn.Open();
SqlDataReader reader = comm.ExecuteReader();
if (reader.Read())
{
return convertToTable(reader["ID"].ToString(), reader["Location"].ToString(), reader["Name"].ToString(), reader.GetInt32(3), reader["Status"].ToString(), reader["Type"].ToString());
}
else return null;
}
catch (SqlException sqlException)
{
throw new HCSMSException(sqlException.Message);
}
finally
{
if (conn != null)
{
conn.Close();
}
}
}
}
public static List<Table> GetTable(QueryCriteria cirteria)
{
using (SqlConnection conn = Utilities.GetConnection())
{
SqlCommand comm = new SqlCommand(searchTable(cirteria), conn);
try
{
conn.Open();
List<Table> tableList = new List<Table>();
SqlDataReader reader = comm.ExecuteReader();
while (reader.Read())
{
tableList.Add(convertToTable(reader["ID"].ToString(), reader["Location"].ToString(), reader["Name"].ToString(), reader.GetInt32(3), reader["Status"].ToString(), reader["Type"].ToString()));
}
return tableList;
}
catch (SqlException sqlException)
{
throw new HCSMSException(sqlException.Message);
}
finally
{
if (conn != null)
{
conn.Close();
}
}
}
}
public static void ChangeTable(string dinningId, string oldTableId, string newTableId)
{
List<SqlCommand> commands = new List<SqlCommand>();
commands.Add(changeOneTable(dinningId, oldTableId, newTableId));
try
{
using (SqlConnection conn = Utilities.GetConnection())
{
Utilities.TransactionExecuteNonQuery(conn, commands);
}
}
catch (SqlException ex)
{
if (ex.Number >= 50000)
{
throw new HCSMSException(ex.Message);
}
else
{
throw new HCSMSException("Transaction Errors!", ex);
}
}
}
public static void MergeTable(string toBeMeregedDinningId, string meregeDinningId)
{
SqlCommand comm = new SqlCommand("mergeDinningTable");
comm.CommandType = CommandType.StoredProcedure;
comm.Parameters.Add("@toBeMeregedId", SqlDbType.Char, 10);
comm.Parameters.Add("@meregeId", SqlDbType.Char, 10);
comm.Parameters["@toBeMeregedId"].Value = toBeMeregedDinningId;
comm.Parameters["@meregeId"].Value = meregeDinningId;
List<SqlCommand> commands = new List<SqlCommand>();
commands.Add(comm);
try
{
using (SqlConnection conn = Utilities.GetConnection())
{
Utilities.TransactionExecuteNonQuery(conn, commands);
}
}
catch (SqlException ex)
{
if (ex.Number >= 50000)
{
throw new HCSMSException(ex.Message);
}
else
{
throw new HCSMSException("Transaction Errors!", ex);
}
}
}
public static void InsertDinningTable(string tableId, DinningTable dinning)
{
List<SqlCommand> commands = new List<SqlCommand>();
SqlCommand comm = new SqlCommand(@"insert into DinningTable(Id, TableId, GuestAmount, ArrivedTime, Note)
values(@Id, @TableId, @GuestAmount, @ArrivedTime, @Note)");
comm.Parameters.Add("@Id", SqlDbType.Char, 10);
comm.Parameters.Add("@TableId", SqlDbType.Char, 10);
comm.Parameters.Add("@GuestAmount", SqlDbType.Int);
comm.Parameters.Add("@ArrivedTime", SqlDbType.DateTime);
comm.Parameters.Add("@Note", SqlDbType.Text);
comm.Parameters["@Id"].Value = dinning.Id;
comm.Parameters["@TableId"].Value = tableId;
comm.Parameters["@GuestAmount"].Value = dinning.GuestAmount;
comm.Parameters["@ArrivedTime"].Value = dinning.ArrivedTime;
comm.Parameters["@Note"].Value = dinning.Note;
commands.Add(comm);
try
{
using (SqlConnection conn = Utilities.GetConnection())
{
Utilities.TransactionExecuteNonQuery(conn, commands);
}
}
catch (SqlException ex)
{
if (ex.Number >= 50000)
{
throw new HCSMSException(ex.Message);
}
else
{
throw new HCSMSException("Transaction Errors !", ex);
}
}
}
private static DinningTable covertToDinningTable(string id, int guestAmount, DateTime arrivedTime, string note)
{
DinningTable table = new DinningTable();
table.Id = id.Trim();
table.GuestAmount = guestAmount;
table.ArrivedTime = arrivedTime;
table.Note = note.Trim();
return table;
}
private static Table convertToTable(string id, string location, string name, int seatAmount, string status, string type)
{
Table table = new Table();
table.Number = id;
table.Location = location;
table.Name = name;
table.SeatAmount = seatAmount;
table.Status =(TableStatus) Enum.Parse(typeof(TableStatus),status);
table.Type = type;
return table;
}
private static SqlCommand changeOneTable(string dinningId, string oldTableId, string newTableId)
{
SqlCommand comm = new SqlCommand("changeDinningTable");
comm.CommandType = CommandType.StoredProcedure;
comm.Parameters.Add("@dinningId", SqlDbType.Char, 10);
comm.Parameters.Add("@oldTableId", SqlDbType.Char, 10);
comm.Parameters.Add("@newTableId", SqlDbType.Char, 10);
comm.Parameters["@dinningId"].Value = dinningId;
comm.Parameters["@oldTableId"].Value = oldTableId;
comm.Parameters["@newTableId"].Value = newTableId;
return comm;
}
private static string searchTable(QueryCriteria cirteria)
{
string search = @"select [Table].Id, Location, [Table].Name, SeatAmount, Status , TableType.Name as Type
from [Table], TableType
where and [Table].TableTypeId = TableType.Id";
if (cirteria != null)
{
search = search + " and " + cirteria.Name + " " + cirteria.Value;
}
return search;
}
}
}