mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
10 lines
163 B
C#
10 lines
163 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PodNoms.Api.Persistence
|
|
{
|
|
public interface IUnitOfWork
|
|
{
|
|
Task<bool> CompleteAsync();
|
|
}
|
|
} |