public static void RunReceptionUser()
        {
            int l = 0;

            while (l < 1)
            {
                Console.Clear();
                TitleScreen titleScreen = new TitleScreen();
                Console.WriteLine("Enter 1 to add new vehicle, 2 to login to view Inpection, 3 to logout or type \"quit\" to exit");
                string inProgramEntry = Console.ReadLine();
                if (string.Equals(inProgramEntry.ToLower(), "quit"))
                {
                    System.Environment.Exit(1);
                }
                else if (string.Equals(inProgramEntry, ""))
                {
                    Console.WriteLine(errorMessage);
                }
                try
                {
                    int InProgramEntry = int.Parse(inProgramEntry);
                    if (InProgramEntry == 1)
                    {
                        NewVehicle.addNewVehicle();
                        break;
                    }
                    else if (InProgramEntry == 2)
                    {
                        CarProfile.GetVehicleInspectionDetails();
                    }
                    else if (InProgramEntry == 3)
                    {
                        break;
                    }
                    else
                    {
                        Console.WriteLine(errorMessage);
                    }
                }
                catch (Exception)
                {
                    Console.WriteLine(errorMessage + " Exception handled!");
                }
            }
        }