Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created January 30, 2019 15:39
Show Gist options
  • Save evgomes/88c418a20fed0f9b34661a86ef095c21 to your computer and use it in GitHub Desktop.
Save evgomes/88c418a20fed0f9b34661a86ef095c21 to your computer and use it in GitHub Desktop.
ICategoryRepository with AddAsync method, from Supermarket API
public interface ICategoryRepository
{
Task<IEnumerable<Category>> ListAsync();
Task AddAsync(Category category);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment