private static void ShowAllCars(InventoryDAL Dal) { List <Car> allCars = Dal.GetAllInvetory(); foreach (Car c in allCars) { Console.WriteLine(c); } }