Skip to content

Instantly share code, notes, and snippets.

@dtryon
Last active December 15, 2015 11:49
Show Gist options
  • Save dtryon/5255952 to your computer and use it in GitHub Desktop.
Save dtryon/5255952 to your computer and use it in GitHub Desktop.
public class Order
{
private Customer customer;
public Order(Customer customer)
{
this.customer = customer;
}
// snip
public void Place(Action<Customer> notifyCustomer)
{
// place order
notifyCustomer(customer);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment