Пример #1
0
 public WCFService(Func<IServiceBus> serviceBus, IMessageTracker tracker, IMessageBucket messages, DelegateManager manager)
 {
     this.serviceBus = serviceBus;
     this.tracker = tracker;
     this.messages = messages;
     this.manager = manager;
 }
Пример #2
0
 public ServiceBusHandler(Func<IServiceBus> serviceBus, HandlerContext handlerContext, Func<string, Response> response, IMessageBucket bucket, DelegateManager manager, Func<ControllerContext> controllerContext)
 {
     this.serviceBus = serviceBus;
     this.handlerContext = handlerContext;
     this.response = response;
     this.bucket = bucket;
     this.manager = manager;
     this.controllerContext = controllerContext;
 }
Пример #3
0
 public WCFAdapter(WCFProxy<IWCFProtocol> protocol, Func<IServiceBus> serviceBus, DelegateManager manager)
 {
     this.protocol = protocol;
     this.serviceBus = serviceBus;
     this.manager = manager;
 }
Пример #4
0
 public NativeAdapter(Func<IServiceBus> serviceBus, DelegateManager manager)
 {
     this.serviceBus = serviceBus;
     this.manager = manager;
 }
Пример #5
0
 public NativeAdapter(Func <IServiceBus> serviceBus, DelegateManager manager)
 {
     this.serviceBus = serviceBus;
     this.manager    = manager;
 }