Skip to content

Instantly share code, notes, and snippets.

@dtryon
Created March 27, 2013 16:43
public class Order
{
private Customer customer;
public Order(Customer customer)
{
this.customer = customer;
}
// snip
public void Place(ISendEmail sendEmail)
{
// place order
sendEmail.ConfirmationTo(customer.EmailAddress);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment