private void changeVehicleStatus()
        {
            string licensePlate = getLicensePlate();

            AutomobileRepairShop.eVehicleStatus newStatus;
            m_UserInterface.ScanNewVehicleStatus(out newStatus);
            m_Garage.UpdateStatus(licensePlate, newStatus);
        }