public void InflateTires() { m_UserDisplay.ClearAndDisplayMessage("You have chosen to Inflate a vehicle tires to maximum"); m_UserDisplay.DisplayMessage("Please enter the license number of the vehicle you want to inflate air to"); string licensePlate = ValidateUserInput.GetLicensePlateFromUser(); try { m_Garage.FillAirToMaximum(licensePlate); m_UserDisplay.ClearAndDisplayMessage(string.Format("{0} Wheels pumped to Maximum!", licensePlate)); } catch (Exception exception) { m_UserDisplay.ClearAndDisplayMessage(exception.Message); } finally { m_UserDisplay.PressAnyKeyToContinue(); } }