Exemple #1
0
        public void HandleCategoryTree(int siteId, int lft, CategoryTreeHandler treeHandler)
        {
            ISite site = this._resp.GetSiteById(siteId);

            site.HandleCategoryTree(lft, treeHandler);
        }
Exemple #2
0
        public void HandleCategoryTree(int siteId, int parentId, CategoryTreeHandler treeHandler)
        {
            ISite site = this.repo.GetSiteById(siteId);

            site.HandleCategoryTree(parentId, treeHandler);
        }