Skip to content

Instantly share code, notes, and snippets.

import java.util.ArrayList;
import java.util.List;
public class Dealership{
private List<Car> carList;
public Dealership(){
this.carList = new ArrayList<>();
}