public void buyCar(CarDealer dealer, int price) {

    owner = dealer.carSale(price);
    money -= price;
  }