Example #1
0
 protected Junction(IEnumerable <IPredicateAplication> Criteria, Junction Parent = null)
 {
     this.Criteria = MutableList.FromItems(Criteria.ToList());
     this.Parent   = Parent;
     this.Children = MutableList.Create <Junction>();
 }
Example #2
0
 public static ReadOnlySet <T> Create <T>(MutableList <T> items)
 => new ReadOnlySet <T>(items);