public static IndirectSelfReferringObject GetSampleInstance()
        {
            var parent = new IndirectSelfReferringObject
            {
                ParentDescription = "I'm Parent",
            };

            var child = new ChildReferrenceType
            {
                ChildDescription = "I'm Child",
            };

            parent.Child = child;
            //child.Parent = parent;
            return parent;
        }
        public static IndirectSelfReferringObject GetSampleInstance()
        {
            var parent = new IndirectSelfReferringObject
            {
                ParentDescription = "I'm Parent",
            };


            var child = new ChildReferrenceType
            {
                ChildDescription = "I'm Child",
            };

            parent.Child = child;
            //child.Parent = parent;
            return(parent);
        }