Ejemplo n.º 1
0
        protected string PathCard2Tree(CD card)
        {
            if (card == null)
            {
                return("");
            }
            PathTree tree = new PathTree(card.Parent_FP, card.Code);

            return(tree.ToString());
        }