Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Last active January 15, 2020 16:29
Show Gist options
  • Save IntegerMan/1e2c4b890ed7c8a241a98fc065e9b39e to your computer and use it in GitHub Desktop.
Save IntegerMan/1e2c4b890ed7c8a241a98fc065e9b39e to your computer and use it in GitHub Desktop.
public PastaMeal BuildPastaMeal(IEnumerable<Guest> guests,
KitchenSupplies inventory,
DateTime timeOfDay)
{
var dinner = new PastaMeal();
// Add a quanity of pasta per guest based on time of day and kitchen supply quantities
return dinner;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment