Exemplo n.º 1
0
 public InternalRxTransaction(IInternalAsyncTransaction transaction)
 {
     _transaction = transaction;
 }
 public InternalTransaction(IInternalAsyncTransaction txc, BlockingExecutor executor)
 {
     _txc      = txc ?? throw new ArgumentNullException(nameof(txc));
     _executor = executor ?? throw new ArgumentNullException(nameof(executor));
 }