public TransactionScopeMessageSink(TransactionScope scope, ITrackUnitOfWork unitOfWork)
 {
     this.scope = scope;
     this.unitOfWork = unitOfWork;
 }
示例#2
0
 public IdempotentBus(IBus bus, ITrackUnitOfWork unitOfWork)
     : base(bus)
 {
     this.unitOfWork = unitOfWork;
 }