コード例 #1
0
 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;
 }
コード例 #4
0
 public LogoController(IStrongContentService contentService, IStrongMediaService mediaService)
     : base(contentService, mediaService)
 {
 }
コード例 #5
0
 public NavigationController(IStrongContentService contentService)
 {
     _contentService = contentService;
 }
コード例 #6
0
 public HubController(IStrongContentService contentService)
 {
     _strongContentService = contentService;
 }