Files
podnoms/server/Persistence/IUnitOfWork.cs
Fergal Moran 1a92ad80eb Feature switch
2018-03-14 10:50:57 +00:00

10 lines
157 B
C#
Executable File

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