public class Order
{
  private Customer customer;

  public Order(Customer customer)
  { 
    this.customer = customer;
  }

  // snip

  public void Place(Action<Customer> notifyCustomer)
  {
    // place order

    notifyCustomer(customer);
  }
}