private int RootNodeId()
        {
            var root = _rootContentLocator.Find();

            if (root == null)
            {
                throw new ArgumentException("Root Node could not be found");
            }

            return(root.Id);
        }