/// <summary>
 /// Validates that the input Component can be a valid input based on the component attributes. Component Attributes shall contain one signal
 /// </summary>
 /// <param name="c">Component to be connected to as an input</param>
 /// <returns></returns>
 public override bool IsValidInputComponent(Component c)
 {
     return(ComponentUtility.ComponentAttributesHasSignal(c));
 }