Files
podnoms/server/Persistence/IUnitOfWork.cs
2018-05-12 03:26:34 +01:00

10 lines
163 B
C#

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