private void HandleTimer()
        {
            TimerBuilder current = timerBuilder;

            if (current != null)
            {
                dataExchangeAPIClient.AddEntry(current.Stop());
            }
        }
Exemplo n.º 2
0
        private void HandleTimer()
        {
            TimerBuilder current = timerBuilder;

            if (current != null && this._dataExchangeClient != null)
            {
                try
                {
                    this._dataExchangeClient.AddEntry(current.Stop());
                }
                catch (Exception e)
                {
                    throw e;
                }
            }
        }