/**
         * This methods gets the vehicle type from the user
         */
        private VehicleBuilder.eVehicleType getVehicleType()
        {
            ConsoleUtils.ClearConsoleAndWrite("Pick a vehicle type:");
            ConsoleUtils.PrintEnum(typeof(VehicleBuilder.eVehicleType));
            string userInput = Console.ReadLine();

            return((VehicleBuilder.eVehicleType)ConsoleUtils.CheckEnumValue(typeof(VehicleBuilder.eVehicleType), userInput));
        }