Example #1
0
 /// <summary>
 /// Print the first menu the standard user sees after login
 /// </summary>
 public static void PrintBuyMenuOptions()
 {
     Console.Clear();
     SharedView.PrintWithGreenText($"\tVälkommen till bokshoppen");
     Console.WriteLine("\t1. Köp böcker");
     Console.WriteLine("\tX. Logga ut");
 }
Example #2
0
 /// <summary>
 /// Prints out success!
 /// </summary>
 public static void Success()
 {
     SharedView.PrintWithGreenText("\tLyckades!");
     GeneralViewHelper.WaitAndClearScreen();
 }