public ServiceEdgeInstance(IEdge myEdge, Nullable<Int64> myEdgePropertyID) : base(myEdge.EdgeTypeID) { this.EdgePropertyID = myEdgePropertyID; this.Comment = myEdge.Comment; var SourceVertex = myEdge.GetSourceVertex(); this.SourceVertex = new ServiceVertexInstance(SourceVertex); }
public ServiceEdgeInstance(IEdge myEdge, Nullable <Int64> myEdgePropertyID) : base(myEdge.EdgeTypeID) { this.EdgePropertyID = myEdgePropertyID; this.Comment = myEdge.Comment; var SourceVertex = myEdge.GetSourceVertex(); this.SourceVertex = new ServiceVertexInstance(SourceVertex); }
public ServiceEdgeInstance(IEdge myEdge) { this.TypeID = myEdge.EdgeTypeID; this.EdgePropertyID = ((ARemoteEdge)myEdge).EdgePropertyID; this.SourceVertex = new ServiceVertexInstance(myEdge.GetSourceVertex()); }