Exemple #1
0
        public static void ApplyForAdmin()
        {
            Console.Clear();
            if (Convert.ToBoolean(loggedInUser.IsAdmin))
            {
                GUIHelper.Print("You are already an Admin!", ConsoleColor.Red);
                return;
            }

            Repo.ApplyForAdmin(loggedInUser.Email);
        }