StoryTeller.Model.Persistence.Suite.organizeIntoHierarchy C# (CSharp) Method

organizeIntoHierarchy() private method

private organizeIntoHierarchy ( Hierarchy hierarchy ) : void
hierarchy Hierarchy
return void
        private void organizeIntoHierarchy(Hierarchy hierarchy)
        {
            hierarchy.Suites[path] = this;
            suites.Each(x => x.organizeIntoHierarchy(hierarchy));

            Specifications.Each(x => hierarchy.Specifications[x.id] = x);
        }