Пример #1
0
        internal void ChangeVehicleStatus()
        {
            string licensePlate = getLicensePlate();

            m_Garage.InGarage(licensePlate);
            Owner.eVehicleStatus vehicleStatus = getVehicleStatus();
            m_Garage.ChangeStatus(vehicleStatus, licensePlate);
            PromptConsoleMsg(string.Format("Successfully changed vehicle status to {0}", vehicleStatus));
        }
Пример #2
0
 public void ChangeStatus(Owner.eVehicleStatus i_VehicleChoice, string i_LicenseNumber)
 {
     r_GarageClients[i_LicenseNumber].VehicleStatus = i_VehicleChoice;
 }