Skip to content

Instantly share code, notes, and snippets.

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