Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created February 4, 2019 22:48
Show Gist options
  • Save evgomes/7715aee5d59818d29d6bfea7f3025849 to your computer and use it in GitHub Desktop.
Save evgomes/7715aee5d59818d29d6bfea7f3025849 to your computer and use it in GitHub Desktop.
IProductRepository of Supermarket API
using System.Collections.Generic;
using System.Threading.Tasks;
using Supermarket.API.Domain.Models;
namespace Supermarket.API.Domain.Repositories
{
public interface IProductRepository
{
Task<IEnumerable<Product>> ListAsync();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment