private void SetupGarage(int notused) { int newcap = InputNumeric("Enter the capacity of the garage:"); MyGarage = new Garage <Vehicle>(newcap); }
static void Main(string[] args) { Garage garageLogicUI = new Garage(); garageLogicUI.StartMenuGarage(); }