Skip to content

Instantly share code, notes, and snippets.

@brunkb
Created January 6, 2015 05:14
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 brunkb/6bed1ad83e4b16968bd0 to your computer and use it in GitHub Desktop.
Save brunkb/6bed1ad83e4b16968bd0 to your computer and use it in GitHub Desktop.
The PricingService
class PricingService {
// would be injected
InventoryApiConnectionFactory fac = new InventoryApiConnectionFactory()
def priceLookup(String clientId, String itemUUID) {
fac.withInventoryConnection { connection ->
connection.pricingLookup(clientId, itemUUID)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment