public FileInputSignal(string path, string name)
 {
     this.Name             = name;
     this.InputComponents  = new List <Component>();
     this.OutputComponents = new List <Component>();
     this.Data             = myData = new FileSignalAttributes()
     {
         FilePath = path
     };
 }
 public FileInputSignal()
 {
     this.InputComponents  = new List <Component>();
     this.OutputComponents = new List <Component>();
     this.Data             = myData = new FileSignalAttributes();
 }