Skip to content

Instantly share code, notes, and snippets.

@tadas-subonis
Created March 30, 2013 22:49
Show Gist options
  • Save tadas-subonis/5278693 to your computer and use it in GitHub Desktop.
Save tadas-subonis/5278693 to your computer and use it in GitHub Desktop.
class ShopSellerService {
@Inject
@SMS
private Notifier notifier;
public void sell(Order order) {
order.toPlaced();
notifier.sendOrderPlacedNotification(order.getCustomer());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment