internal void SetAuthenticationResultForBusiness(AuthenticationResult result)
        {
            if (result == null)
            {
                return;
            }

            ENAuthCacheEntry entry = ENAuthCacheEntry.EntryWithResult(result);

            BusinessCache = entry;
        }
        internal void SetAuthenticationResultForLinkedNotebook(AuthenticationResult result, string guid)
        {
            if (result == null)
            {
                return;
            }

            ENAuthCacheEntry entry = ENAuthCacheEntry.EntryWithResult(result);

            LinkedCache[guid] = entry;
        }