Skip to content

Instantly share code, notes, and snippets.

@aidanmorgan
Created June 16, 2011 15:23
Show Gist options
  • Save aidanmorgan/1029471 to your computer and use it in GitHub Desktop.
Save aidanmorgan/1029471 to your computer and use it in GitHub Desktop.
public Whiskey Create(Distillery d, WhiskeyType type)
{
Whiskey w = new Whiskey
{
Type = type
};
Add(d, w);
return w;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment