public void Release(ITransaction transaction) { // We could ensure that the transaction // was properly closed here (transaction as SimpleTransaction).Dispose(); if (transaction == _current) { _current = null; } }
public ITransaction CreateTransaction() { _current = new SimpleTransaction(); return(_current); }
public ITransaction CreateTransaction() { _current = new SimpleTransaction(); return _current; }