9 lines
262 B
C#
9 lines
262 B
C#
|
|
namespace Brizco.Repository.Repositories.UnitOfWork;
|
|||
|
|
|
|||
|
|
public interface IUnitOfWork : IScopedDependency
|
|||
|
|
{
|
|||
|
|
Task BeginTransaction();
|
|||
|
|
Task RollBackAsync();
|
|||
|
|
Task CommitAsync();
|
|||
|
|
Task SaveChangesAsync(CancellationToken cancellationToken = default);
|
|||
|
|
}
|