Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created January 25, 2019 16:58
Show Gist options
  • Save evgomes/a9263b0e596e02509e783c32f9fc5469 to your computer and use it in GitHub Desktop.
Save evgomes/a9263b0e596e02509e783c32f9fc5469 to your computer and use it in GitHub Desktop.
Initial code of ICategoryRepository, from Supermarket API.
using System.Collections.Generic;
using System.Threading.Tasks;
using Supermarket.API.Domain.Models;
namespace Supermarket.API.Domain.Repositories
{
public interface ICategoryRepository
{
Task<IEnumerable<Category>> ListAsync();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment