コード例 #1
0
ファイル: PageController.cs プロジェクト: wolfweb/Ww
 public PageController(
     IAuthenticationService authenticationService,
     IPageService pageService,
     IContentRouteProvider contentRouteProvider) {
     _authenticationService = authenticationService;
     _pageService = pageService;
     _contentRouteProvider = contentRouteProvider;
 }
コード例 #2
0
ファイル: NavigationController.cs プロジェクト: wolfweb/Ww
 public NavigationController(
     IRepository<Navigation> navigationRepository,
     IContentRouteProvider contentRouteProvider) {
     _navigationRepository = navigationRepository;
     _contentRouteProvider = contentRouteProvider;
 }
コード例 #3
0
 public ContentRouteMatcher(IContentRouteProvider contentRouteProvider)
 {
     ContentRouteProvider = contentRouteProvider;
 }
コード例 #4
0
ファイル: CategoryController.cs プロジェクト: wolfweb/Ww
 public CategoryController(
     ICategoryService categoryService,
     IContentRouteProvider contentRouteProvider) {
     _categoryService = categoryService;
     _contentRouteProvider = contentRouteProvider;
 }