Skip to content

Instantly share code, notes, and snippets.

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