Example #1
0
 public UrlSlugRouter(IRouter target, IContentDataService <RoutablePage> dataService, IRouteStore routeStore)
 {
     this.target      = target;
     this.dataService = dataService;
     this.routeStore  = routeStore;
 }
Example #2
0
 public AdminController(IContentDataService <RoutablePage> dataService, IContentTypeDiscoveryService discoveryService)
 {
     this.dataService      = dataService;
     this.discoveryService = discoveryService;
 }
Example #3
0
        public InMemoryRouteStore(IContentDataService <RoutablePage> dataStore)
        {
            var pages = dataStore.GetAll();

            Build(pages);
        }
 public SimpleContentController(IContentDataService <RoutablePage> dataService)
 {
     this.dataService = dataService;
 }