public BlogRepository(IStrongContentService strongContentService, ICache cache)
 {
     _strongContentService = strongContentService;
     _cache = cache;
 }
示例#2
0
 public BlogController(IBlogRepository repo, IStrongContentService contentService)
 {
     _blogRepository       = repo;
     _strongContentService = contentService;
 }
示例#3
0
 public ArticlesRepository(IStrongContentService strongContentService)
 {
     _strongContentService = strongContentService;
 }
 public LogoController(IStrongContentService contentService, IStrongMediaService mediaService)
     : base(contentService, mediaService)
 {
 }
 public NavigationController(IStrongContentService contentService)
 {
     _contentService = contentService;
 }
示例#6
0
 public HubController(IStrongContentService contentService)
 {
     _strongContentService = contentService;
 }