public SynchronousCommandBusDecorator(ICommandBus commandBus)
 {
     this.commandBus = commandBus;
     this.commandDispatcher = new CommandDispatcher();
 }
 public CommandProcessor(IMessageReceiver receiver, ITextSerializer textSerializer)
     : base(receiver, textSerializer)
 {
     this.commandDispatcher = new CommandDispatcher();
 }