Skip to content

Instantly share code, notes, and snippets.

@sandromancuso
Created March 6, 2012 19:11
Show Gist options
  • Save sandromancuso/1988339 to your computer and use it in GitHub Desktop.
Save sandromancuso/1988339 to your computer and use it in GitHub Desktop.
public class StandardPriceCalculation {
public double calculateProductPrice(Product product, int quantity) {
return product.getPrice() * quantity;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment