Esempio n. 1
0
 public ComponentController(IPageSectionService pageSectionService, IPageComponentTypeService pageComponentTypeService, IPageComponentService pageComponentService, IImageService imageService)
 {
     _pageSectionService       = pageSectionService;
     _pageComponentTypeService = pageComponentTypeService;
     _pageComponentService     = pageComponentService;
     _imageService             = imageService;
 }
Esempio n. 2
0
 public SectionController(IPageSectionService pageSectionService, IPageSectionTypeService pageSectionTypeService, IImageService imageService, IRoleService roleService)
 {
     _pageSectionService     = pageSectionService;
     _pageSectionTypeService = pageSectionTypeService;
     _imageService           = imageService;
     _roleService            = roleService;
 }
Esempio n. 3
0
 public SectionController(IPageSectionService sectionService, IImageService imageService, IRoleService roleService, IPagePartialService partialService, IPageAssociationService associationService)
 {
     _sectionService     = sectionService;
     _imageService       = imageService;
     _roleService        = roleService;
     _partialService     = partialService;
     _associationService = associationService;
 }
Esempio n. 4
0
 public PageController(IPageService pageService, IPageSectionService sectionService, IAnalyticsService analyticService, IUserService userService, ILoginService loginService, IRoleService roleService)
 {
     _pageService     = pageService;
     _sectionService  = sectionService;
     _analyticService = analyticService;
     _userService     = userService;
     _loginService    = loginService;
     _roleService     = roleService;
 }
Esempio n. 5
0
 public BuildController(IPageService pageService, IPageSectionService pageSectionService, IPageSectionTypeService pageSectionTypeService, IImageService imageService, IAnalyticsService analyticService, IUserService userService, ILoginService loginService, IRoleService roleService, IThemeService themeService)
 {
     _pageService            = pageService;
     _pageSectionService     = pageSectionService;
     _pageSectionTypeService = pageSectionTypeService;
     _imageService           = imageService;
     _analyticService        = analyticService;
     _userService            = userService;
     _loginService           = loginService;
     _roleService            = roleService;
     _themeService           = themeService;
 }
Esempio n. 6
0
 public PageController(IPageService pageService, IPageSectionService sectionService, IAnalyticsService analyticService)
 {
     _pageService     = pageService;
     _sectionService  = sectionService;
     _analyticService = analyticService;
 }