Controllo input opzione 5

This commit is contained in:
La Programmatrice Verde 2025-05-07 21:43:01 +02:00
parent 7d0e2d2a20
commit 12a58af26d
9 changed files with 6 additions and 3 deletions

View File

@ -352,7 +352,10 @@ class Program {
break;
case 5:
for (int i = 0; i < clienti.Length; i++) {
clienti[i].StampaPrenotazioni();
if (clienti[i] != null) {
Console.WriteLine($"Cliente n. {i + 1}\n");
clienti[i].StampaPrenotazioni();
}
}
Pausa();
break;

Binary file not shown.

Binary file not shown.

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("agenzia_viaggi")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5deed24c3015833c03b6882dcd5b9728f2d83e1d")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d0e2d2a20832c08fee6ed8e5c82929ee4b7ef6e")]
[assembly: System.Reflection.AssemblyProductAttribute("agenzia_viaggi")]
[assembly: System.Reflection.AssemblyTitleAttribute("agenzia_viaggi")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
11c438e245e0f2a2c0454d8518eaac4d4be227f5a243e5f779c48d80d453d9b8
26fd656d6612597d0a6de6b43658ea976dd067e7afd7d8ca4033dcfa8783659c

Binary file not shown.

Binary file not shown.