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

ToHierarchy() public method

public ToHierarchy ( ) : Hierarchy
return Hierarchy
        public Hierarchy ToHierarchy()
        {
            var hierarchy = new Hierarchy
            {
                Top = this
            };

            organizeIntoHierarchy(hierarchy);

            return hierarchy;
        }