Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created April 15, 2021 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasongorman/d1eac64334bef49b1f3559490a97a867 to your computer and use it in GitHub Desktop.
Save jasongorman/d1eac64334bef49b1f3559490a97a867 to your computer and use it in GitHub Desktop.
public class Warehouse {
public void buy(CD cd, int quantity, CreditCard card) {
card.charge(cd.getPrice() * quantity);
cd.setStock(cd.getStock() - quantity);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment