public HtmlModuleController(IModuleService moduleService, IHtmlModuleService htmlModuleService , IMenuService menuService, IModulePageService modulePageService) { _moduleService = moduleService; _menuService = menuService; _modulePageService = modulePageService; _htmlModuleService = htmlModuleService; }
public HtmlModulesController(IModuleService moduleService, IHtmlModuleService htmlModuleService , IMenuService menuService, IModulePageService modulePageService, IPositionService positionService) { _moduleService = moduleService; _menuService = menuService; _modulePageService = modulePageService; _htmlModuleService = htmlModuleService; _positionService = positionService; }
public SuperRocketController( IContentManager contentManager, IContentTypesService contentTypesService, IHtmlModuleService moduleService ) { _contentManager = contentManager; _contentTypesService = contentTypesService; _moduleService = moduleService; Logger = NullLogger.Instance; T = NullLocalizer.Instance; }