private void HandleTimer() { TimerBuilder current = timerBuilder; if (current != null) { dataExchangeAPIClient.AddEntry(current.Stop()); } }
private void HandleTimer() { TimerBuilder current = timerBuilder; if (current != null && this._dataExchangeClient != null) { try { this._dataExchangeClient.AddEntry(current.Stop()); } catch (Exception e) { throw e; } } }