} //output för konsoll

        static void FindParkedVehicle()
        {
            Console.Write("Enter a LicensePlate : ");
            string license = Console.ReadLine().ToUpper();

            Console.ForegroundColor = ConsoleColor.DarkCyan;
            Console.WriteLine("Parkinglot ID\tLicenseplate\t\tVehicle\t\tChecked-In");
            Console.ForegroundColor = ConsoleColor.White;
            Vehicle vehicle = databaseSQL.FindVehicle(license);

            Console.WriteLine($"{vehicle.ParkID}\t{vehicle.LicensePlate}\t\t{vehicle.Description}\t\t{vehicle.CheckIn}");
            Console.ReadKey();
            Console.Clear();
        } // Översikt på parkerade fordon just nu