Exemplo n.º 1
0
        static public bool IsParentOf(this Relatable item, Relatable child)
        {
            if (child != null)
            {
                if (child.IsChildOf(item))
                {
                    return(true);
                }
            }

            return(false);
        }