Beispiel #1
0
 public static bool HasChildren(DocumentationActionDraftWBS action, IEnumerable <DocumentationActionDraftWBS> others) =>
 HasChildren(action.WBS, others.Select(a => a.WBS));
Beispiel #2
0
 public static DocumentationActionDraftWBS GetParent(DocumentationActionDraftWBS child, IEnumerable <DocumentationActionDraftWBS> others) =>
 others.SingleOrDefault(action => string.Equals(Unindent(child.WBS), action.WBS));