private static BaseProjectionConfig GetCachedConfig(Type sourceType, Type destinationType)
        {
            var key = GetCacheKey(sourceType, destinationType);

            return(ConfigurationCache.ContainsKey(key) ? ConfigurationCache[key] : null);
        }