Skip to content

Instantly share code, notes, and snippets.

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