Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created January 30, 2019 16:10
Show Gist options
  • Save evgomes/58d90e0fc3a336824822d0f264a8f26c to your computer and use it in GitHub Desktop.
Save evgomes/58d90e0fc3a336824822d0f264a8f26c to your computer and use it in GitHub Desktop.
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