예제 #1
0
 public BlogController(IOrchardServices services, IBlogService blogService, IBlogSlugConstraint blogSlugConstraint, IFeedManager feedManager, RouteCollection routeCollection) {
     _services = services;
     _blogService = blogService;
     _blogSlugConstraint = blogSlugConstraint;
     _feedManager = feedManager;
     _routeCollection = routeCollection;
     Logger = NullLogger.Instance;
 }
 public BlogHomePageProvider(IOrchardServices services, IBlogService blogService, IBlogSlugConstraint blogSlugConstraint, IFeedManager feedManager) {
     Services = services;
     _blogService = blogService;
     _blogSlugConstraint = blogSlugConstraint;
     _feedManager = feedManager;
 }
예제 #3
0
 public BlogService(IContentManager contentManager, IBlogSlugConstraint blogSlugConstraint) {
     _contentManager = contentManager;
     _blogSlugConstraint = blogSlugConstraint;
 }
 public BlogSlugConstraintUpdator(IBlogSlugConstraint blogSlugConstraint, IBlogService blogService) {
     _blogSlugConstraint = blogSlugConstraint;
     _blogService = blogService;
 }
예제 #5
0
 public Routes(IBlogSlugConstraint blogSlugConstraint) {
     _blogSlugConstraint = blogSlugConstraint;
 }