Last active
May 19, 2019 14:08
-
-
Save johanvergeer/89cb91b85a273bd5a472900f56988edf to your computer and use it in GitHub Desktop.
Person Repository interface
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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