Esempio n. 1
0
        public Argument AddLink()
        {
            DebatePlatformContext db = new DebatePlatformContext();

            Link = db.Arguments.FirstOrDefault(a => a.ArgumentId == LinkId);
            if (Link != null)
            {
                Link.AddChildrenRecursive();
            }
            return(Link);
        }