コード例 #1
0
        public ServerMonitorCache(ITradeViewConfigurationServer configurationServer)
        {
            this.configurationServer   = configurationServer;
            serverMonitors             = new ObservableCollection <ServerMonitor>();
            serverMonitorSubscriptions = new Dictionary <string, IDisposable>();

            dispatcher = Application.Current.Dispatcher;
        }
コード例 #2
0
 public TradeServerService(ITradeViewConfigurationServer configurationServer)
 {
     this.configurationServer = configurationServer;
 }
コード例 #3
0
 public TradeServerService(ITradeViewConfigurationServer configurationServer, IServerMonitorCache serverMonitorCache)
 {
     this.configurationServer = configurationServer;
     this.serverMonitorCache  = serverMonitorCache;
 }