Example #1
0
 public TransportController(
     IPacketsStore packetsStore,
     ITransportRequestService packageRequestParser,
     IThrottleQueueManager queueManager,
     IAgentStaticConfigService agentConfigService,
     IDbTokenService dbTokenService,
     IAgentConfigurationsService agentConfigurationsHandler)
 {
     this.packetsStore               = packetsStore;
     this.packageRequestParser       = packageRequestParser;
     this.queueManager               = queueManager;
     this.agentConfigService         = agentConfigService;
     this.dbTokenService             = dbTokenService;
     this.agentConfigurationsHandler = agentConfigurationsHandler;
 }