public void Run()
        {
            Stopwatch stopwatch = Stopwatch.StartNew();

            ConsoleUtils.PrintHeader(ConsoleColor.Magenta);

            Log.Info("Initializing database");
            Database.Initialize();

            Log.Info("Loading error messages");
            LoadErrorMessages();

            Log.Info("CourseRegistrationSystem is up and running in {0}ms", stopwatch.ElapsedMilliseconds);

            ConsoleUtils.PrintSeparator();

            LoginScreen screen = new LoginScreen();

            screen.Render();
        }