Example #1
0
 public BackOfficeHub(
     IBus bus,
     IBrokerConnectionManager brokerConnectionManager,
     IAuditContext auditContext,
     IJsonSerializer jsonSerializer)
 {
     this.bus = bus;
     this.brokerConnectionManager = brokerConnectionManager;
     this.auditContext            = auditContext;
     this.jsonSerializer          = jsonSerializer;
 }
Example #2
0
 public BackOfficeHub(
     IBus bus,
     IBrokerConnectionManager brokerConnectionManager,
     IJsonSerializer jsonSerializer,
     IMessagingLogger messagingLogger)
 {
     this.bus = bus;
     this.brokerConnectionManager = brokerConnectionManager;
     this.jsonSerializer          = jsonSerializer;
     this.messagingLogger         = messagingLogger;
 }
 public void SetUp()
 {
     sut = new BrokerConnectionManager();
     sut.ClearBrokerConnections();
 }
 public void SetUp()
 {
     sut = new BrokerConnectionManager();
     sut.ClearBrokerConnections();
 }
Example #5
0
 public InsertDocumentIntoRemoteBackOfficeCommandHandler(
     IBrokerConnectionManager brokerConnectionManager)
 {
     this.brokerConnectionManager = brokerConnectionManager;
 }