-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
138 lines (116 loc) · 3.34 KB
/
Program.cs
File metadata and controls
138 lines (116 loc) · 3.34 KB
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
using LabManager.Database;
using LabManager.Repositories;
using LabManager.Models;
var databaseConfig = new DatabaseConfig();
var databaseSetup = new DatabaseSetup(databaseConfig);
var computerRepository = new ComputerRepository(databaseConfig);
var labRepository = new LabRepository(databaseConfig);
// Routing
var modelName = args[0];
var modelAction = args[1];
if(modelName == "Computer")
{
if(modelAction == "List")
{
Console.WriteLine("Computer List: ");
foreach (var computer in computerRepository.GetAll())
{
Console.WriteLine($"{computer.Id}, {computer.Ram}, {computer.Processor}");
}
}
if (modelAction == "New")
{
var id = Convert.ToInt32(args[2]);
var ram = args[3];
var processor = args[4];
var computer = new Computer(id, ram, processor);
computerRepository.Save(computer);
}
if (modelAction == "Update")
{
var id = Convert.ToInt32(args[2]);
var ram = args[3];
var processor = args[4];
var computer = new Computer(id, ram, processor);
computerRepository.Update(computer);
}
if(modelAction == "Delete")
{
var id = Convert.ToInt32(args[2]);
if (computerRepository.ExistsByID(id))
{
computerRepository.Delete(id);
}
else
{
Console.WriteLine($"O Computador {id} não existe.");
}
}
if(modelAction == "Show")
{
var id = Convert.ToInt32(args[2]);
if (computerRepository.ExistsByID(id))
{
var computer = computerRepository.GetById(id);
Console.WriteLine($"{computer.Id}, {computer.Ram}, {computer.Processor}");
}
else
{
Console.WriteLine($"O Computador {id} não existe.");
}
}
}
if(modelName == "Lab")
{
if(modelAction == "List")
{
Console.WriteLine("Lab List: ");
foreach (var lab in labRepository.GetAll())
{
Console.WriteLine($"{lab.Id}, {lab.Number}, {lab.Name}, {lab.Block}");
}
}
if (modelAction == "New")
{
var id = Convert.ToInt32(args[2]);
var number = Convert.ToInt32(args[3]);
var name = args[4];
var block = Convert.ToChar(args[5]);
var lab = new Lab(id, number, name, block);
labRepository.Save(lab);
}
if (modelAction == "Update")
{
var id = Convert.ToInt32(args[2]);
var number = Convert.ToInt32(args[3]);
var name = args[4];
var block = Convert.ToChar(args[5]);
var lab = new Lab(id, number, name, block);
labRepository.Update(lab);
}
if(modelAction == "Delete")
{
var id = Convert.ToInt32(args[2]);
if (labRepository.ExistsByID(id))
{
labRepository.Delete(id);
}
else
{
Console.WriteLine($"O Laboratório {id} não existe.");
}
}
if(modelAction == "Show")
{
var id = Convert.ToInt32(args[2]);
if (labRepository.ExistsByID(id))
{
var lab = labRepository.GetById(id);
Console.WriteLine($"{lab.Id}, {lab.Number}, {lab.Name}, {lab.Block}");
}
else
{
Console.WriteLine($"O Laboratório {id} não existe.");
}
}
}