public TransactionScopeMessageSink(TransactionScope scope, ITrackUnitOfWork unitOfWork)
 {
     this.scope = scope;
     this.unitOfWork = unitOfWork;
 }
Exemplo n.º 2
0
 public IdempotentBus(IBus bus, ITrackUnitOfWork unitOfWork)
     : base(bus)
 {
     this.unitOfWork = unitOfWork;
 }