예제 #1
0
 public CommunityController(IBnhConfig config, IBnhRepositories repos, IRatingCalculator rating)
     : base(config, repos, rating)
 {
     this.config = config;
     this.repos = repos;
     this.rating = rating;
 }
예제 #2
0
 public AdminController(IBnhRepositories repos, IRatingCalculator rating, IBnhConfig config, IPathMapper pathMapper, ISearchProvider searcher)
 {
     this.repos = repos;
     this.rating = rating;
     this.config = config;
     this.pathMapper = pathMapper;
     this.searcher = searcher;
 }
예제 #3
0
 public SearchController(IBnhRepositories repos, ISearchProvider searcher)
 {
     this.repos = repos;
     this.searcher = searcher;
 }
예제 #4
0
 public HomeController(IBnhRepositories repos)
 {
     this.repos = repos;
 }