Files
podnoms/server/Persistence/IUnitOfWork.cs
Fergal Moran 8d69c72b83 Merge Repos
2017-10-30 20:42:23 +00:00

10 lines
157 B
C#

using System;
using System.Threading.Tasks;
namespace PodNoms.Api.Persistence
{
public interface IUnitOfWork
{
Task CompleteAsync();
}
}