private void Auth()
        {
            Console.ForegroundColor = ConsoleColor.Magenta;
            Authentication auth = new Authentication();

            Console.Write("\n  Please begin the authentication process (asc auth) : ");
            Console.ResetColor();
            command = Console.ReadLine();
            if (command == "asc auth")
            {
                //auth.Authentify();
                auth.AdminAuthentify();
            }
            else
            {
                Auth();
            }
            Console.ResetColor();
        }