Skip to content

Instantly share code, notes, and snippets.

@yaplex
Created June 19, 2017 20:58
Show Gist options
  • Save yaplex/dc5f983a8f0a605b88b63a34ca893bfa to your computer and use it in GitHub Desktop.
Save yaplex/dc5f983a8f0a605b88b63a34ca893bfa to your computer and use it in GitHub Desktop.
public interface IMyRepository
{
ICollection<T> GetAll<T>();
T GetById<T>(Func<T,bool> predicate);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment