Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created January 30, 2019 16:10
IUnitOfWork from Supermarket API
using System.Threading.Tasks;
namespace Supermarket.API.Domain.Repositories
{
public interface IUnitOfWork
{
Task CompleteAsync();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment