Created
January 30, 2019 16:10
-
-
Save evgomes/58d90e0fc3a336824822d0f264a8f26c to your computer and use it in GitHub Desktop.
IUnitOfWork from Supermarket API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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