131415161718192021
private Owner owner; private CarRepository carRepository; public Car getCar() { Car car = carRepository.getNormalCar(); car.setOwner(owner); return car; }