Exemplo n.º 1
0
            public BatchEdge(BatchGraph batchInnerTinkerGrapĥ) : base(batchInnerTinkerGrapĥ)
            {
                if (batchInnerTinkerGrapĥ == null)
                {
                    throw new ArgumentNullException(nameof(batchInnerTinkerGrapĥ));
                }

                _batchInnerTinkerGrapĥ = batchInnerTinkerGrapĥ;
            }
Exemplo n.º 2
0
            public BatchVertex(object id, BatchGraph batchInnerTinkerGrapĥ) : base(batchInnerTinkerGrapĥ)
            {
                if (id == null)
                {
                    throw new ArgumentNullException(nameof(id));
                }
                if (batchInnerTinkerGrapĥ == null)
                {
                    throw new ArgumentNullException(nameof(batchInnerTinkerGrapĥ));
                }

                if (id == null)
                {
                    throw new ArgumentNullException("id");
                }
                _externalId            = id;
                _batchInnerTinkerGrapĥ = batchInnerTinkerGrapĥ;
            }