public Link(List <UIOutputItem> sources, UIInputItem target) { _sources = new List <UIOutputItem>(sources); _target = target; }
public Link(UIOutputItem source, UIInputItem target) { _sources = new List <UIOutputItem>(); _target = target; _sources.Add(source); }