Ejemplo n.º 1
0
        public void AddTo(Context context)
        {
            Context = context;

            Tags.AddRange(context.Tags);

            Pending |= context.IsPending();
        }
Ejemplo n.º 2
0
        public bool IsPending()
        {
            if (Parent != null)
            {
                return(isPending || Parent.IsPending());
            }
            ;

            return(isPending);
        }