Skip to content

Instantly share code, notes, and snippets.

@johanvergeer
Last active May 19, 2019 14:08
Show Gist options
  • Save johanvergeer/89cb91b85a273bd5a472900f56988edf to your computer and use it in GitHub Desktop.
Save johanvergeer/89cb91b85a273bd5a472900f56988edf to your computer and use it in GitHub Desktop.
Person Repository interface
public interface IPersonRepository
{
IReadOnlyCollection<Person> FindAll();
void Add(Person person);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment