Skip to content

Instantly share code, notes, and snippets.

@TechWatching
Created January 28, 2020 13:09
Show Gist options
  • Save TechWatching/781932fe14afa5290208cb6fc8d7ce47 to your computer and use it in GitHub Desktop.
Save TechWatching/781932fe14afa5290208cb6fc8d7ce47 to your computer and use it in GitHub Desktop.
public interface IUserService
{
Task<IReadOnlyCollection<User>> GetAllUsers();
Task UpdateUser(User userToUpdate);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment