2023-09-15 12:37:02 +03:30
|
|
|
|
namespace Brizco.Repository.Repositories.UnitOfWork;
|
|
|
|
|
|
|
|
|
|
|
|
public interface IUnitOfWork : IScopedDependency
|
|
|
|
|
|
{
|
2023-09-20 11:54:12 +03:30
|
|
|
|
Task BeginTransaction();
|
|
|
|
|
|
Task RollBackAsync();
|
|
|
|
|
|
Task CommitAsync();
|
|
|
|
|
|
Task SaveChangesAsync(CancellationToken cancellationToken = default);
|
2023-09-15 12:37:02 +03:30
|
|
|
|
}
|