public DirectedModelRelationshipType(ModelRelationshipStereotype stereotype, EdgeDirection direction)
 {
     Stereotype = stereotype;
     Direction  = direction;
 }
示例#2
0
 public DirectedModelRelationshipType(ModelRelationshipStereotype stereotype, EdgeDirection direction)
 {
     Stereotype = stereotype ?? throw new ArgumentNullException(nameof(stereotype));
     Direction  = direction;
 }