Skip to content

Instantly share code, notes, and snippets.

@ro31337
Created August 20, 2014 20:54
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 ro31337/64b7a5980cb60259e1d3 to your computer and use it in GitHub Desktop.
Save ro31337/64b7a5980cb60259e1d3 to your computer and use it in GitHub Desktop.
public class CompanyService
{
// ...
public Company GetById(long companyId)
{
return dbContext
.Companies
.FirstOrDefault(x => x.Id == companyId);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment