コード例 #1
0
        // Constructors
        internal ReflectGroupDictionary(IReflectGroupRepository repository)
        {
            #region Contracts

            if (repository == null) throw new ArgumentNullException();

            #endregion

            // Arguments
            _repository = repository;
        }
コード例 #2
0
        // Constructors
        public CacheReflectGroupRepository(IReflectGroupRepository repository)
        {
            #region Contracts

            if (repository == null) throw new ArgumentNullException();

            #endregion

            // Arguments
            _repository = repository;
        }
コード例 #3
0
        // Constructors
        internal ReflectGroupDictionary(IReflectGroupRepository repository)
        {
            #region Contracts

            if (repository == null)
            {
                throw new ArgumentNullException();
            }

            #endregion

            // Arguments
            _repository = repository;
        }
コード例 #4
0
        // Constructors
        public CacheReflectGroupRepository(IReflectGroupRepository repository)
        {
            #region Contracts

            if (repository == null)
            {
                throw new ArgumentNullException();
            }

            #endregion

            // Arguments
            _repository = repository;
        }