Files
podnoms/server/Persistence/IUnitOfWork.cs
2018-04-13 22:03:05 +01:00

10 lines
157 B
C#

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