コード例 #1
0
 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;
 }