11 lines
318 B
C#
11 lines
318 B
C#
namespace AuthHex.Infra.UoW
|
|
{
|
|
public interface IUnitOfWork
|
|
{
|
|
Task BeginAsync(CancellationToken ct = default);
|
|
Task CommitAsync(CancellationToken ct = default);
|
|
Task RollbackAsync(CancellationToken ct = default);
|
|
Task SaveChangesAsync(CancellationToken ct = default);
|
|
}
|
|
}
|