Exemplo n.º 1
0
        protected CachingCrmEntitySecurityProvider(ICacheSupportingCrmEntitySecurityProvider underlyingProvider, ICrmEntitySecurityCacheInfoFactory cacheInfoFactory)
        {
            if (underlyingProvider == null)
            {
                throw new ArgumentNullException("underlyingProvider");
            }

            if (cacheInfoFactory == null)
            {
                throw new ArgumentNullException("cacheInfoFactory");
            }

            UnderlyingProvider = underlyingProvider;
            CacheInfoFactory   = cacheInfoFactory;
        }
Exemplo n.º 2
0
 public ApplicationCachingCrmEntitySecurityProvider(
     ICacheSupportingCrmEntitySecurityProvider underlyingProvider,
     ICrmEntitySecurityCacheInfoFactory cacheInfoFactory)
     : base(underlyingProvider, cacheInfoFactory)
 {
 }