diff --git a/MCTG/ConsoleApp/ConsoleApp - Backup.csproj b/MCTG/ConsoleApp/ConsoleApp - Backup.csproj
new file mode 100644
index 0000000..2c5123f
--- /dev/null
+++ b/MCTG/ConsoleApp/ConsoleApp - Backup.csproj
@@ -0,0 +1,16 @@
+
+
+
+ Exe
+ net7.0
+ enable
+ enable
+ Debug;Release;CI
+
+
+
+
+
+
+
+
diff --git a/MCTG/ConsoleApp/ConsoleApp.csproj b/MCTG/ConsoleApp/ConsoleApp.csproj
index 2c5123f..dbc5e22 100644
--- a/MCTG/ConsoleApp/ConsoleApp.csproj
+++ b/MCTG/ConsoleApp/ConsoleApp.csproj
@@ -5,12 +5,11 @@
net7.0
enable
enable
- Debug;Release;CI
-
-
-
+
+
+
diff --git a/MCTG/ConsoleApp/Menu/AddRecipeMenu.cs b/MCTG/ConsoleApp/Menu/AddRecipeMenu.cs
index c6ef6f2..7fc51f4 100644
--- a/MCTG/ConsoleApp/Menu/AddRecipeMenu.cs
+++ b/MCTG/ConsoleApp/Menu/AddRecipeMenu.cs
@@ -41,6 +41,7 @@ namespace ConsoleApp.Menu
title: title,
id: null,
authorMail: MasterManager.CurrentConnectedUser?.Mail,
+ picture: "",
ingredients: new List(),
preparationSteps: steps.ToArray()
);
diff --git a/MCTG/ConsoleApp/Program.cs b/MCTG/ConsoleApp/Program.cs
index 3a5da0c..ff09c71 100644
--- a/MCTG/ConsoleApp/Program.cs
+++ b/MCTG/ConsoleApp/Program.cs
@@ -23,6 +23,7 @@ else
masterMgr = new MasterManager(dataManager);
}
+
MenuManager menuMgr = new MenuManager(masterMgr);
menuMgr.Loop();
diff --git a/MCTG/DataPersistence/Stubs.cs b/MCTG/DataPersistence/Stubs.cs
index 4234eb1..87e62b9 100644
--- a/MCTG/DataPersistence/Stubs.cs
+++ b/MCTG/DataPersistence/Stubs.cs
@@ -1,104 +1,108 @@
-using Model;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace DataPersistence
-{
- ///
- /// The subs class is a group of prefabricated object that can only be loaded. It only use is for testing.
- ///
- public class Stubs : IDataManager
- {
- public Dictionary> Load()
- {
- Dictionary> data = new Dictionary>
- {
- {
- #region Data: Recipes
- nameof(Recipe),
- new List