From cc71d41cca6b4d0e9607ab5fbac79177d7c71196 Mon Sep 17 00:00:00 2001 From: Im_Alpha Date: Tue, 14 Dec 2021 02:02:56 -0800 Subject: [PATCH] reworded for easier implementation --- .../Implementations/UiPrint.cs | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/Source Code/TeamHobby.HobbyProjectGenerator.DataAccess/Implementations/UiPrint.cs b/Source Code/TeamHobby.HobbyProjectGenerator.DataAccess/Implementations/UiPrint.cs index e94b6be..6d06cb8 100644 --- a/Source Code/TeamHobby.HobbyProjectGenerator.DataAccess/Implementations/UiPrint.cs +++ b/Source Code/TeamHobby.HobbyProjectGenerator.DataAccess/Implementations/UiPrint.cs @@ -4,15 +4,6 @@ namespace TeamHobby.HobbyProjectGenerator.DataAccess { public class UiPrint { - public void InitialMenu() - { - // Create intial menu - Console.WriteLine("What would you like to access?"); - int num = 1; - Console.WriteLine(num + ".User Management"); - num += 1; - Console.WriteLine(num + ".Logging"); - } public void UserManagementMenu(string username) { // Menu for all UserManagement options @@ -32,9 +23,9 @@ namespace TeamHobby.HobbyProjectGenerator.DataAccess menu += 1; Console.WriteLine(menu + ") Enable an account.\n"); menu += 1; - Console.WriteLine(menu + ") View logs.\n"); + Console.WriteLine(menu + ") View log path.\n"); menu += 1; - Console.WriteLine(menu + ") View archive.\n"); + Console.WriteLine(menu + ") View archive path.\n"); } } }