From 90c24358fdb2cf4da5136cc6ba105b3fa39e33bc Mon Sep 17 00:00:00 2001 From: Liam MONCHANIN Date: Mon, 22 May 2023 09:55:12 +0200 Subject: [PATCH] Ajout exeptions a changer pour voir si le program.cs buil dsur drone --- notus/Notus_Persistence/Stub.cs | 8 ++++---- notus/Notus_Persistence/ToXML.cs | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/notus/Notus_Persistence/Stub.cs b/notus/Notus_Persistence/Stub.cs index c00b816..36d4675 100644 --- a/notus/Notus_Persistence/Stub.cs +++ b/notus/Notus_Persistence/Stub.cs @@ -12,22 +12,22 @@ namespace Notus_Persistance { public static void SaveDatabaseData(Database database) { - + throw new NotImplementedException(); } public static Database LoadDatabaseData() { - + throw new NotImplementedException(); } public static void SaveUserData(User user) { - + throw new NotImplementedException(); } public static User LoadUserData() { - + throw new NotImplementedException(); } } } diff --git a/notus/Notus_Persistence/ToXML.cs b/notus/Notus_Persistence/ToXML.cs index f813109..57f7900 100644 --- a/notus/Notus_Persistence/ToXML.cs +++ b/notus/Notus_Persistence/ToXML.cs @@ -17,22 +17,22 @@ namespace Notus_Persistance public static void SaveDatabaseData(Database database) { - + throw new NotImplementedException(); } public static Database LoadDatabaseData() { - + throw new NotImplementedException(); } public static void SaveUserData(User user) { - + throw new NotImplementedException(); } public static User LoadUserData() { - + throw new NotImplementedException(); } } }