Esempio n. 1
0
        public EnumerableGetSubGraph(IGetObjectGraph getObjectGraph)
        {
            if (getObjectGraph == null)
            {
                throw new ArgumentNullException("getObjectGraph");
            }

            this._getObjectGraph = getObjectGraph;
        }
Esempio n. 2
0
        public GraphTraversal(IGetObjectGraph getObjectGraph)
        {
            if (getObjectGraph == null)
            {
                throw new ArgumentNullException("getObjectGraph");
            }

            this._getObjectGraph = getObjectGraph;
        }
Esempio n. 3
0
        public EnumerableGetSubGraph(IGetObjectGraph getObjectGraph, TypeExclusions typeExclusions)
            : base(typeExclusions)
        {
            if (getObjectGraph == null)
            {
                throw new ArgumentNullException("getObjectGraph");
            }

            this._getObjectGraph = getObjectGraph;
        }
Esempio n. 4
0
        public DefaultGetSubGraph(IGetObjectGraph getObjectGraph, IGetObjectFields getObjectFields, TypeExclusions typeExclusions)
            : base(typeExclusions)
        {
            if (getObjectGraph == null)
            {
                throw new ArgumentNullException("getObjectGraph");
            }
            if (getObjectFields == null)
            {
                throw new ArgumentNullException("getObjectFields");
            }

            this._getObjectGraph  = getObjectGraph;
            this._getObjectFields = getObjectFields;
        }
Esempio n. 5
0
        public EnumerableGetSubGraph(IGetObjectGraph getObjectGraph, TypeExclusions typeExclusions)
            : base(typeExclusions)
        {
            if (getObjectGraph == null) throw new ArgumentNullException("getObjectGraph");

            this._getObjectGraph = getObjectGraph;
        }
Esempio n. 6
0
        public EnumerableGetSubGraph(IGetObjectGraph getObjectGraph)
        {
            if (getObjectGraph == null) throw new ArgumentNullException("getObjectGraph");

            this._getObjectGraph = getObjectGraph;
        }
Esempio n. 7
0
        public DefaultGetSubGraph(IGetObjectGraph getObjectGraph, IGetObjectFields getObjectFields, TypeExclusions typeExclusions)
            : base(typeExclusions)
        {
            if (getObjectGraph == null) throw new ArgumentNullException("getObjectGraph");
            if (getObjectFields == null) throw new ArgumentNullException("getObjectFields");

            this._getObjectGraph = getObjectGraph;
            this._getObjectFields = getObjectFields;
        }
Esempio n. 8
0
        public GraphTraversal(IGetObjectGraph getObjectGraph)
        {
            if (getObjectGraph == null) throw new ArgumentNullException("getObjectGraph");

            this._getObjectGraph = getObjectGraph;
        }