Ejemplo n.º 1
0
 public CommunityController(IBnhConfig config, IBnhRepositories repos, IRatingCalculator rating)
     : base(config, repos, rating)
 {
     this.config = config;
     this.repos = repos;
     this.rating = rating;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 3
0
 public SearchController(IBnhRepositories repos, ISearchProvider searcher)
 {
     this.repos = repos;
     this.searcher = searcher;
 }
Ejemplo n.º 4
0
 public HomeController(IBnhRepositories repos)
 {
     this.repos = repos;
 }