Пример #1
0
 public PageController(
     IAuthenticationService authenticationService,
     IPageService pageService,
     IContentRouteProvider contentRouteProvider) {
     _authenticationService = authenticationService;
     _pageService = pageService;
     _contentRouteProvider = contentRouteProvider;
 }
Пример #2
0
 public NavigationController(
     IRepository<Navigation> navigationRepository,
     IContentRouteProvider contentRouteProvider) {
     _navigationRepository = navigationRepository;
     _contentRouteProvider = contentRouteProvider;
 }
Пример #3
0
 public ContentRouteMatcher(IContentRouteProvider contentRouteProvider)
 {
     ContentRouteProvider = contentRouteProvider;
 }
Пример #4
0
 public CategoryController(
     ICategoryService categoryService,
     IContentRouteProvider contentRouteProvider) {
     _categoryService = categoryService;
     _contentRouteProvider = contentRouteProvider;
 }