Ejemplo n.º 1
0
 public CommandBusPipelineTests()
 {
     middlewareFactory = Substitute.For <ICommandBusMiddlewareFactory>();
     commandBus        = Substitute.For <ICommandBus>();
     sut = new CommandBusPipeline(middlewareFactory);
 }
Ejemplo n.º 2
0
 public CommandBusPipeline(ICommandBusMiddlewareFactory middlewareFactory)
 {
     this.middlewareFactory = middlewareFactory;
 }