public Task SaveOrUpdateCredential(string actionstepOrgKey, string username, string password)
        {
            singleSetOfCredentials = new InfoTrackCredentials()
            {
                ActionstepOrgKey = actionstepOrgKey,
                Username         = username,
                Password         = password
            };

            return(Task.CompletedTask);
        }
 /// <summary>
 /// Removes the internally cached credentials, setting them to null.
 /// </summary>
 public void Reset()
 {
     singleSetOfCredentials = null;
 }