From e00886d7104ca81bab40c781657af1d17c24b3c4 Mon Sep 17 00:00:00 2001 From: "liam.monchanin" Date: Thu, 18 May 2023 18:02:03 +0200 Subject: [PATCH] je teste --- notus/Notus_Console/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notus/Notus_Console/Program.cs b/notus/Notus_Console/Program.cs index 466b6d1..0b1d946 100644 --- a/notus/Notus_Console/Program.cs +++ b/notus/Notus_Console/Program.cs @@ -148,7 +148,7 @@ while (boucle == 0){ case "8":///Ajouter un tag a une note Console.WriteLine("Cherchez une note"); name2 = Console.ReadLine(); - Note note = u.RechercherNote(name2); + n = u.RechercherNote(name2); Console.WriteLine("Cherchez un tag"); name = Console.ReadLine(); Tags tagToAdd = u.RechercherTags(name); @@ -158,7 +158,7 @@ while (boucle == 0){ case "9":///Supprimer un tag a une note Console.WriteLine("Cherchez une note"); name2 = Console.ReadLine(); - Note note = u.RechercherNote(name2); + n = u.RechercherNote(name2); Console.WriteLine("Cherchez un tag"); name = Console.ReadLine(); Tags tagToSupp = u.RechercherTags(name);