Ejemplo n.º 1
0
        internal void Ensure(ContentItem item)
        {
            string domain = item.Domain();
            var    found  = Items.FirstOrDefault(x => x.Id.Equals(domain));

            if (found != null)
            {
                foreach (var path in item.Paths)
                {
                    found.EnsurePath(path);
                }
            }
        }