-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReservationSystem.cs
268 lines (231 loc) · 9.56 KB
/
ReservationSystem.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
using System.Reflection.Metadata.Ecma335;
using System.Runtime.InteropServices;
using System.Security.Cryptography.X509Certificates;
using static System.Runtime.InteropServices.JavaScript.JSType;
static class ReservationSystem
{
static List<Reservation> reservations = new();
public static void AddReservation(Reservation reservation)
{
reservations.Add(reservation);
}
public static void ShowReservations(string mail)
{
Console.WriteLine("Huidige Reserveringen:");
if (Reservation._reservations.Count == 0)
{
Console.WriteLine("U heeft geen huidige reserveringen");
return;
}
foreach (var reservation in Reservation._reservations)
{
if (reservation.Email == mail)
{
Reservation.ShowReservation(reservation);
}
}
Console.WriteLine("Druk op C als u een reservering wilt annuleren");
Console.WriteLine("Druk op iets anders om terug te gaan");
if (Console.ReadKey().Key == ConsoleKey.C)
{
while (true)
{
Console.WriteLine("vul een tafelnummer in van de reservering die u wilt annuleren: ");
if (int.TryParse(Console.ReadLine(), out int tableNumber))
{
Reservation.RemoveReservation(tableNumber);
Console.WriteLine("bijgewerkte reserveringen:");
if (Reservation._reservations.Count == 0)
{
Console.WriteLine("U heeft geen huidige reserveringen");
return;
}
foreach (var reservation in Reservation._reservations)
{
if (reservation.Email == mail)
{
Reservation.ShowReservation(reservation);
}
}
break;
}
}
}
}
public static int GetValidDate(string prompt, int min, int max)
{
int input;
bool isValid = false;
do
{
Console.Write(prompt);
string inputStr = Console.ReadLine();
if (int.TryParse(inputStr, out input))
{
if (input >= min && input <= max)
{
isValid = true;
}
}
if (!isValid)
{
Console.WriteLine($"Ongeldige invoer. graag een nummer tussen de {min} en {max}.");
}
} while (!isValid);
return input;
}
/*
public static int GetValidMonth()
{
List<string> months = new List<string>() { "jan", "feb", "mrt", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec" };
List<string> Vastmonths = new List<string>() { "jan", "feb", "mrt", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec" };
bool isValid = false;
Console.WriteLine($"Vul een maand in:\nDe huidige maand is groen gemarkeerd");
int currentMonthIndex = DateTime.Now.Month - 1;
int month = currentMonthIndex + 1;
// Maandenlijst omkeren met huidige maand eerst
months = months.Skip(currentMonthIndex).Concat(months.Take(currentMonthIndex)).ToList(); // skip() zorgt voor dat alle maanden voor de geselecteerde maand verwijdert worden, Take() zorgt ervoor dat alle maanden na de geselecteerde maand.
// Concat() maakt de geselecteerde lijsten van skip() en take() weer tot 1 verzameling en ToList() zet de verzameling weer terug een een list
do
{
for (int i = 0; i < months.Count; i++)
{
if (i == 0) // nulste maand wordt groen gemarkeerd
{
Console.ForegroundColor = ConsoleColor.Green; // Huidige maand groen markeren
}
Console.WriteLine(months[i]);
if (i == 0)
{
Console.ResetColor(); // Kleur resetten na het printen van de huidige maand
}
if (i < months.Count - 1)
{
Console.Write("");
}
}
string givenMonth = Console.ReadLine().ToLower();
if (Vastmonths.Contains(givenMonth))
{
isValid = true;
for (int i = 0; i < Vastmonths.Count; i++)
{
if (givenMonth == Vastmonths[i])
{
month = i + 1;
break;
}
}
}
else
{
Console.WriteLine($"Ongeldige invoer. Graag een van deze opties invullen ({string.Join(", ", months)})");
}
} while (!isValid);
return month;
}
*/
public static (int year, int month, int day) GetValidDayAndMonth()
{
Dictionary<string, int> daysInMonths = new Dictionary<string, int>
{
{ "jan", 31 },
{ "feb", 28 },
{ "mrt", 31 },
{ "apr", 30 },
{ "mei", 31 },
{ "jun", 30 },
{ "jul", 31 },
{ "aug", 31 },
{ "sep", 30 },
{ "okt", 31 },
{ "nov", 30 },
{ "dec", 31 }
};
bool DateSelected = false;
List<string> months = new List<string>() { "jan", "feb", "mrt", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec" };
int currentMonthIndex = DateTime.Now.Month - 1;
int year = DateTime.Now.Year;
int selectedMonth = currentMonthIndex;
int selectedDay = DateTime.Now.Day;
while (!DateSelected)
{
Console.Clear();
Console.WriteLine("Selecteer de datum die u wilt reserveren.");
if (selectedDay > daysInMonths[months[selectedMonth]])
{
selectedDay -= daysInMonths[months[selectedMonth]];
if (selectedMonth == 11) { selectedMonth = 0; year++; } else { selectedMonth++; }
}
if (selectedDay < 1)
{
if (selectedMonth == 0) { selectedMonth = 11; year--; } else { selectedMonth--; }
selectedDay += daysInMonths[months[selectedMonth]];
}
if (selectedMonth >= currentMonthIndex && year > DateTime.Now.Year)
{
if (selectedMonth == currentMonthIndex && selectedDay >= DateTime.Now.Day) // als de maand hetzelfde is maar de dag gaat verder dan een jaar later, niet toestaan en terug zetten
{
selectedDay = DateTime.Now.Day - 1;
}
else if (selectedMonth > currentMonthIndex) // als de maand verder dan een jaar later is, niet toestaan en terug zetten
{
selectedMonth = currentMonthIndex;
selectedDay = DateTime.Now.Day - 1;
}
}
if (selectedMonth <= currentMonthIndex && year <= DateTime.Now.Year)
{
if (selectedMonth == currentMonthIndex && selectedDay <= DateTime.Now.Day) { selectedDay = DateTime.Now.Day; } // als de maand hetzelfde is maar de dag gaat terug, niet toestaan en terug zetten
else if (selectedMonth < currentMonthIndex) { selectedMonth = currentMonthIndex; selectedDay = DateTime.Now.Day; } // als de maand terug in de tijd is terug naar de huidige datum zetten
}
Console.WriteLine($"{months[selectedMonth]} {year} ");
for (int i = 0; i < daysInMonths[months[selectedMonth]]; i++)
{
if (selectedDay == i + 1)
{
Console.ForegroundColor = ConsoleColor.Green;
}
Console.Write($"{i + 1} ");
Console.ResetColor();
if (i == 6 || i == 13 || i == 20 || i == 27) { Console.WriteLine(); }
}
ConsoleKeyInfo input = Console.ReadKey(intercept: true);
switch (input.Key)
{
case ConsoleKey.RightArrow:
selectedDay++;
break;
case ConsoleKey.LeftArrow:
selectedDay--;
break;
case ConsoleKey.DownArrow:
selectedDay += 7;
break;
case ConsoleKey.UpArrow:
selectedDay -= 7;
break;
case ConsoleKey.Enter:
DateSelected = true; break;
}
Console.WriteLine();
}
return (year, selectedMonth + 1, selectedDay);
}
public static int GetValidMinute(string prompt)
{
int input;
do
{
Console.Write(prompt);
string inputStr = Console.ReadLine();
if (int.TryParse(inputStr, out input))
{
if (input == 0 || input == 15 || input == 30 || input == 45)
return input;
Console.WriteLine($"ongeldige invoer. graag een nummer tussen van de tijdslots: 0 - 15 - 30 - 45.");
}
} while (input != 0 || input != 15 || input != 30 || input != 45);
return input;
}
}