Exemplo n.º 1
0
 public TreeCmsController(IPageUrlHelper helper,
                          IDbContext db,
                          ITreeModelService <JsTreeModel> treeModelService)
 {
     _db = db;
     _treeModelService = treeModelService;
     _urlHelper        = helper;
 }
Exemplo n.º 2
0
 public SitemapController(IRepository <CmsPage> cmsPageRepo,
                          ITreeModelService <TreeModel> treeModelService)
 {
     this._cmsPageRepo      = cmsPageRepo;
     this._treeModelService = treeModelService;
 }