private async Task RefreshAuthorization()
        {
            await _authenticationClient.Authenticate();

            _forceClient = new NetCoreForce.Client.ForceClient(
                _authenticationClient.AuthenticationClient.AccessInfo.InstanceUrl,
                _authenticationClient.AuthenticationClient.ApiVersion,
                _authenticationClient.AuthenticationClient.AccessInfo.AccessToken);

            _logger.LogDebug($"Salesforce Authentication Successful!");
        }
 /// <summary>
 /// This refreshes the session for the user.
 /// </summary>
 private void Reauthenticate()
 {
     _authenticationClient.Authenticate().Wait();
     _logger.LogDebug("Authentication Successful!");
 }