Ejemplo n.º 1
0
        public static List <ulong> GetParentsList(ulong node)  // OK
        {
            List <ulong> pList = new List <ulong>();
            BB           bb    = Db.FromId <BB>(node);

            pList.Add(node);          // Kendisini de ekle
            ParentsList(node, pList); // Node's Parents
            return(pList);
        }
Ejemplo n.º 2
0
        public static void Append(ulong rowUsr, BB REF, string rowState)
        {
            var uth = new XUT
            {
                USR = Db.FromId(rowUsr) as BB,
                REF = REF,
                Skl = rowState,
                Trh = DateTime.Now,
            };

            /*
             * try
             * {
             *  dynamic aaa = Db.FromId(uth.RefNO);
             *  aaa.Ad = 1234;
             * }
             * catch { } //(Microsoft.CSharp.RuntimeBinder.RuntimeBinderException)
             */
        }