Skip to content

Instantly share code, notes, and snippets.

@vkocjancic
Created September 26, 2016 15:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vkocjancic/de79d8e0fac7fb39ade80d23eec38fc9 to your computer and use it in GitHub Desktop.
Save vkocjancic/de79d8e0fac7fb39ade80d23eec38fc9 to your computer and use it in GitHub Desktop.
Non-whitespace sample for Bart Sokol's F# blog
Product GetProductById(int id)
{
return (id > 0) ? _productRepository.Get(id) : null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment