Skip to content

Instantly share code, notes, and snippets.

@MattHoneycutt
Created August 22, 2011 01:57
Show Gist options
  • Save MattHoneycutt/1161490 to your computer and use it in GitHub Desktop.
Save MattHoneycutt/1161490 to your computer and use it in GitHub Desktop.
public interface IRepository<TEntity>
{
void Save(TEntity entity);
IQueryable<TEntity> Query();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment