public bool Commit()
        {
            var success = _engine.Commit();

            if (success)
            {
                NotificationService.Notify();
            }

            return(success);
        }
Exemple #2
0
 /// <summary>
 /// Commit current transaction
 /// </summary>
 public bool Commit() => _engine.Commit();