namespace GamificationService.Database.UnitOfWork; public interface IUnitOfWork { #region Repositories #endregion #region Methods bool SaveChanges(); Task SaveChangesAsync(); Task BeginTransactionAsync(); Task CommitTransactionAsync(); Task RollbackTransactionAsync(); #endregion }