public GenericRequestHandlerController(IDispatchCommand commandDispatcher, IDispatchQuery queryDispatcher,
                                        ILogger log)
 {
     _commandDispatcher = commandDispatcher;
     _queryDispatcher   = queryDispatcher;
     _log = log;
 }
Ejemplo n.º 2
0
 public CommandDispatchBehavior(ILifetimeScope scope, IDispatchCommand next)
 {
     _scope = scope;
     _next  = next;
 }
 public CommandReceiver(ILogger log, IDispatchCommand commandDispatcher)
 {
     _log = log;
     _commandDispatcher = commandDispatcher;
 }
 public NewSoftwareUpdateDownloadedNotificationDataModel(string subject, string message, IDispatchCommand command)
     : base(subject, message, command) {}
 public DefaultNotificationDataModel(string subject, string message, IDispatchCommand command)
     : this(subject, message) {
     OnClickDispatch = command;
 }
 public NewSoftwareUpdateDownloadedNotificationDataModel(string subject, string message, IDispatchCommand command)
     : base(subject, message, command)
 {
 }
 public DefaultNotificationDataModel(string subject, string message, IDispatchCommand command)
     : this(subject, message)
 {
     OnClickDispatch = command;
 }
 public SuperVillainDirtyDeedsService(IDispatchCommand commandDispatcher)
 {
     _commandDispatcher = commandDispatcher;
 }
Ejemplo n.º 9
0
 public SuperheroFeatsService(IDispatchCommand commandDispatcher)
 {
     _commandDispatcher = commandDispatcher;
 }
 public CommandStopwatchBehavior(ILogger log, IDispatchCommand next)
 {
     _log  = log;
     _next = next;
 }