public IntelliCenterDataInterface(ILogService logService, ICloudLogService cloudLogService)
 {
     _logService      = logService;
     _cloudLogService = cloudLogService;
     Cts = new CancellationTokenSource();
     _tokenExpireTimer = new Timer(TokenTimeOut);
 }
Example #2
0
 public ViewModel(ILogService logService, ICloudLogService cloudLogService)
 {
     this.logService      = logService;
     this.cloudLogService = cloudLogService;
     this.GenerateLog     = new RelayCommand(GenerateException);
 }