public CommunicationManager(ILocalConfigManager configManager)
 {
     this._configManager       = configManager;
     this._communicationServer = new CommunicationServer(this._configManager.GetConfig(LocalConfigKeys.CommunicationAddress), this.GetOpenPort(), this.OnApplicationConnection);
 }
Esempio n. 2
0
 public CommandParser(ILocalConfigManager localConfig)
 {
     this._configManager = localConfig;
 }