-
Notifications
You must be signed in to change notification settings - Fork 0
/
Menu.cs
66 lines (47 loc) · 1.54 KB
/
Menu.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace csharp_biblioteca
{
internal class Menu
{
string Titolo { get; set; }
protected List<Menu> voci;
protected List<Utente> utentiRegistrati;
protected List<Documento> documenti;
public Menu(string titolo,List<Utente> utentiRegistrati,List<Documento> documenti)
{
this.Titolo = titolo;
voci = new List<Menu>();
this.utentiRegistrati = utentiRegistrati;
this.documenti = documenti;
}
public virtual void Esegui()
{
Console.Clear();
Console.Write("Da implementare");
}
public virtual void Navigazione()
{
Console.WriteLine(this.Titolo);
for (int i = 0; i < voci.Count(); i++)
{
Console.WriteLine((i + 1) + ". " + voci[i].Titolo);
}
Console.WriteLine("Cosa vuoi fare?: ");
int menuIndex = int.Parse(Console.ReadLine());
//aggiusto la scelta human readable rispetto all'indice dell'utente
menuIndex = menuIndex - 1;
if (menuIndex > voci.Count())
{
Console.WriteLine("La voce di menu selezionata non esite!");
this.Navigazione();
}
else {
voci[menuIndex].Navigazione();
}
}
}
}