Пример #1
0
 public void Commit()
 {
     DisposeTransactionObjects();
     try
     {
         if ((this.Transaction != null) && (!this.Transaction.IsDisposed))
         {
             this.Transaction.Commit();
         }
     }
     catch (Exception ex)
     {
         Ac.ShowErr(ex);
         //throw;
     };
 }