public static string GetName(this Node node)
 {
     return(PropertiesHelper.GetName(node));
 }
 public static string GetName(this Connection connection)
 {
     return(PropertiesHelper.GetName(connection));
 }
 public static IList <ParameterPair> GetParameters(this Node node)
 {
     return(PropertiesHelper.GetParameters(node));
 }
 public static IList <ParameterPair> GetParameters(this Connection connection)
 {
     return(PropertiesHelper.GetParameters(connection));
 }