示例#1
0
 public CommandReceiver(IQueueingFactory queueingFactory, IConfigurationProvider configurationProvider, ICommandMessageMapper commandMapper, ICommandRepository commandRepository)
 {
     this.queueingFactory       = queueingFactory;
     this.configurationProvider = configurationProvider;
     this.commandMapper         = commandMapper;
     this.commandRepository     = commandRepository;
 }
示例#2
0
 public CommandSender(IQueueingFactory queueingFactory, ICommandMessageMapper commandMapper, IConfigurationProvider configurationProvider)
 {
     this.queueingFactory       = queueingFactory;
     this.commandMapper         = commandMapper;
     this.configurationProvider = configurationProvider;
 }