Skip to content

Instantly share code, notes, and snippets.

@melkio
Created October 1, 2012 12:52
Show Gist options
  • Save melkio/3811625 to your computer and use it in GitHub Desktop.
Save melkio/3811625 to your computer and use it in GitHub Desktop.
Factory with DSL
var order = factory.CreateNewOrder(c =>
{
c.ForThisUser(userId);
c.ManagingStockFromThisStore(storeId);
c.DispatchingOrderNotBefore(dispatchDate);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment