예제 #1
0
        private static void ShowAllCars(InventoryDAL Dal)
        {
            List <Car> allCars = Dal.GetAllInvetory();

            foreach (Car c in allCars)
            {
                Console.WriteLine(c);
            }
        }