예제 #1
0
        private void SetupGarage(int notused)
        {
            int newcap = InputNumeric("Enter the capacity of the garage:");

            MyGarage = new Garage <Vehicle>(newcap);
        }
예제 #2
0
        static void Main(string[] args)
        {
            Garage garageLogicUI = new Garage();

            garageLogicUI.StartMenuGarage();
        }