示例#1
0
        public SourceSinkRelationship Clone(CompositeType first, CompositeType second)
        {
            var trans = new SourceSinkRelationship(first, second);

            trans.CopyFrom(this);
            return(trans);
        }
示例#2
0
 public SourceSinkConnection(SourceSinkRelationship sourceSink, Shape startShape, Shape endShape) :
     base(sourceSink, startShape, endShape)
 {
     SourceSink = sourceSink;
 }