-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
246 lines (232 loc) · 15.1 KB
/
Program.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
namespace EdTrabahoParcial2
{
internal class Program
{
public static void Main(string[] args)
{
Controllers.Pratos controllerPrato = new Controllers.Pratos();
Controllers.Categoria controllerCategoria = new Controllers.Categoria();
Controllers.Restaurantes controllerRestaurante = new Controllers.Restaurantes();
while (true)
{
// Ordenando Categorias
List<Models.Categorias> categorias = controllerCategoria.getAllCategories();
Console.WriteLine("##############################################");
Console.WriteLine(" Selecione uma das categorias a seguir:");
Console.WriteLine("##############################################");
Console.WriteLine("");
categorias.ForEach(categoria =>
Console.WriteLine($"{categoria.Id} - {categoria.Nome}")
);
Console.WriteLine("");
Console.WriteLine("97 - Exibir todos os pratos");
Console.WriteLine("98 - Remover Categoria existente");
Console.WriteLine("99 - Adicionar nova Categoria");
Console.WriteLine("00 - Sair");
Console.WriteLine("");
Console.Write("Opção: ");
try
{
int opcaoCategoria = int.Parse(Console.ReadLine());
switch (opcaoCategoria)
{
case 0:
Environment.Exit(0);
break;
case 99:
Models.Categorias categoria = new Models.Categorias();
categoria.Id = Functions.Ordenacao.ProximoIDDisponivel(controllerCategoria.getAllCategoryIds());
Console.Write("Digite o nome da Categoria: ");
categoria.Nome = Functions.Formatacao.CapitalizeFirstLetter(Console.ReadLine());
controllerCategoria.addCategory(categoria);
break;
case 98:
Console.Write("Digite o ID da Categoria a ser excluída: ");
int idCategoria = int.Parse(Console.ReadLine());
Console.Write("Dejeja excluir os restaurantes e pratos associados? (S/N)");
string respCategoria = Console.ReadLine().ToUpper();
if (respCategoria.Equals("S"))
{
controllerCategoria.RemoveCategoryAndAssociatedItems(idCategoria, controllerRestaurante, controllerPrato);
}
else
{
controllerCategoria.removeCategoryById(idCategoria);
}
break;
case 97:
List<Models.Pratos> pratosOrdenados = new List<Models.Pratos>();
Console.WriteLine();
Console.WriteLine("Ordem de exibição (Rating): ");
Console.WriteLine("1 - Crescente");
Console.WriteLine("2 - Decrescente");
Console.Write("Opção: ");
int opcaoOrdenacao = int.Parse(Console.ReadLine());
if (opcaoOrdenacao > 2)
{
Console.WriteLine("Opção Inválida!!!");
Console.ReadKey();
break;
}
Console.WriteLine("");
pratosOrdenados = controllerPrato.getPratosOrdenedByRating(opcaoOrdenacao);
pratosOrdenados.ForEach(prato =>
Console.WriteLine($"{prato.Id} - {prato.Nome}, Rating: {prato.Rating} Estrelas")
);
Console.ReadKey();
break;
default:
// Verifica se o número inserido pelo usuário corresponde a um ID de categoria.
Models.Categorias categoriaSelecionada = categorias.FirstOrDefault(categoria => categoria.Id == opcaoCategoria);
if (categoriaSelecionada != null)
{
bool isRunningRestaurantPart = true;
while (isRunningRestaurantPart)
{
//Filtra restaurantes pela Categoria/ Ordena Restaurantes
List<Models.Restaurantes> restaurantes = controllerRestaurante.getRestaurantByCategory(categoriaSelecionada.Id);
Console.Clear();
Console.WriteLine($"Você escolheu a categoria: {categoriaSelecionada.Nome}");
Console.WriteLine("Restaurantes disponíveis: ");
Console.WriteLine();
restaurantes.ForEach(restaurante =>
Console.WriteLine($"{restaurante.Id} - {restaurante.Nome}, " +
$"Rating: {controllerRestaurante.ratingRestaurantes(controllerPrato.getPratosByRestaurantByCategory(restaurante.Id, restaurante.IdCategoria))} estrelas")
);
Console.WriteLine("");
Console.WriteLine("98 - Remover Restaurante existente");
Console.WriteLine("99 - Adicionar novo Restaurante");
Console.WriteLine("00 - Voltar");
Console.WriteLine("");
Console.Write("Opção: ");
int opcaoRestaurante = int.Parse(Console.ReadLine());
switch(opcaoRestaurante)
{
case 0:
isRunningRestaurantPart = false;
break;
case 99:
Models.Restaurantes restaurante = new Models.Restaurantes();
restaurante.IdCategoria = categoriaSelecionada.Id;
restaurante.Id = Functions.Ordenacao.ProximoIDDisponivel(controllerRestaurante.getAllIdRestaurantByCategory(categoriaSelecionada.Id));
Console.Write("Digite o nome do Restaurante: ");
restaurante.Nome = Console.ReadLine();
Console.Write("Digite o Endereço do Restaurante: ");
restaurante.Endereco = Console.ReadLine();
Console.Write("Avaliação do Restaurante (1 a 5): ");
controllerRestaurante.addRestaurant(restaurante);
break;
case 98:
Console.Write("Digite o ID do Restaurante a ser excluída: ");
int idRestaurante = int.Parse(Console.ReadLine());
Console.Write("Deseja excluir os pratos associados? (S/N)");
string respRestaurante = Console.ReadLine().ToUpper();
if(respRestaurante.Equals("S"))
{
controllerRestaurante.RemoveRestaurantAndAssociatedItems(idRestaurante, controllerPrato);
}
else
{
controllerRestaurante.removeRestaurantById(idRestaurante);
}
break;
default:
// Pratos
Models.Restaurantes restaurantSelecionado = restaurantes.FirstOrDefault(restaurante => restaurante.Id == opcaoRestaurante);
if (categoriaSelecionada != null)
{
bool isRunningPratosPart = true;
while (isRunningPratosPart)
{
List<Models.Pratos> pratosRestaurantes =
controllerPrato.getPratosByRestaurantByCategory(restaurantSelecionado.Id, restaurantSelecionado.IdCategoria);
Console.Clear();
Console.WriteLine($"Você escolheu o restaurante: {restaurantSelecionado.Nome}");
Console.WriteLine("Pratos disponíveis: ");
Console.WriteLine();
pratosRestaurantes.ForEach(pratos =>
{
Console.WriteLine($"{pratos.Id} - {pratos.Nome}, R$ {pratos.Valor:N2}, Rating: {pratos.Rating} estrelas");
Console.WriteLine($"Ingredientes: {string.Join(", ", pratos.Ingredientes)}");
Console.WriteLine();
});
Console.WriteLine("98 - Remover prato existente");
Console.WriteLine("99 - Adicionar novo prato");
Console.WriteLine("00 - Voltar");
Console.WriteLine("");
Console.Write("Opção: ");
int opcaoPrato = int.Parse(Console.ReadLine());
switch (opcaoPrato)
{
case 0:
isRunningPratosPart = false;
break;
case 99:
Models.Pratos prato = new Models.Pratos();
prato.Id = Functions.Ordenacao.ProximoIDDisponivel(
controllerPrato.getAllIdPratosByRestaurantByCategory(restaurantSelecionado.Id, restaurantSelecionado.IdCategoria));
prato.IdRestaurant = restaurantSelecionado.Id;
prato.IdCategory = restaurantSelecionado.IdCategoria;
Console.Write("Digite o nome do prato: ");
prato.Nome = Console.ReadLine();
Console.WriteLine("Digite os ingredientes (digite 'XD' para finalizar): ");
string ingredientes;
do
{
ingredientes = Console.ReadLine();
if (ingredientes != "XD")
{
prato.Ingredientes.Add(ingredientes);
}
} while (ingredientes != "XD");
controllerPrato.addPrato(prato);
break;
case 98:
Console.Write("Digite o ID do prato que deseja remover: ");
int idPrato = int.Parse(Console.ReadLine());
controllerPrato.removePrato(idPrato);
break;
}
}
}
else
{
Console.WriteLine("Opção inválida. Por favor, digite um valor válido.");
}
break;
}
ClearScreen();
}
}
else
{
Console.WriteLine("Opção inválida. Por favor, digite um valor válido.");
}
break;
}
// Ver melhor forma de clocar o clearscreen
Console.Clear();
}
catch (FormatException)
{
Console.WriteLine("");
Console.WriteLine("Entrada inválida. Por favor, digite valores válidos. \n -> Retornando ao Menu.");
ClearScreen();
}
}
}
static void ClearScreen()
{
Console.WriteLine("");
Console.WriteLine("Pressione uma tecla para continuar...");
Console.ReadKey();
Console.Clear();
}
}
}