Exemplo n.º 1
0
Arquivo: BT.cs Projeto: zh423328/BTree
        public override bool Processs(Entity.EntityParent theOwner)
        {
            foreach (IBTreeNode node in mChildren)
            {
                if (node != null)
                {
                    node.Processs(theOwner);
                }
            }

            return(mbReturn);
        }
Exemplo n.º 2
0
Arquivo: BT.cs Projeto: zh423328/BTree
        public override bool Processs(Entity.EntityParent theOwner)
        {
            //return base.Processs(theOwner);
            foreach (IBTreeNode node in mChildren)
            {
                if (node != null)
                {
                    if (node.Processs(theOwner))
                    {
                        return(true);
                    }
                }
            }

            return(false);
        }
Exemplo n.º 3
0
 public override bool Processs(Entity.EntityParent theOwner)
 {
     return(base.Processs(theOwner));
 }