예제 #1
0
 public SnapshotDataQueueManager(ISnapshotDataStore snapshotDataStore, ISnapshotDataQueue snapshotDataQueue, ILogger <SnapshotDataQueueManager> logger)
 {
     _snapshotDataStore = snapshotDataStore;
     _snapshotDataQueue = snapshotDataQueue;
     _logger            = logger;
 }
예제 #2
0
 public EventController(IServerService serverService, ICommandService commandService, ISnapshotDataQueue snapshotDataQueue)
 {
     _serverService     = serverService;
     _commandService    = commandService;
     _snapshotDataQueue = snapshotDataQueue;
 }