Exemplo n.º 1
0
 public SearchResultWithLinkMapper(
     ICommentatorRepository commentatorRepository,
     IHadithCollectionRepository hadithCollectionRepository)
 {
     CommentatorRepository      = commentatorRepository;
     HadithCollectionRepository = hadithCollectionRepository;
 }
Exemplo n.º 2
0
 public HadithIndexController(
     IHadithRepository hadithRepository,
     IHadithCollectionRepository hadithCollectionRepository,
     IHadithViewModelFactory hadithViewModelFactory)
 {
     HadithRepository           = hadithRepository;
     HadithCollectionRepository = hadithCollectionRepository;
     HadithViewModelFactory     = hadithViewModelFactory;
 }
Exemplo n.º 3
0
 public SiteSearchController(
     ISearchEngine searchEngine,
     ISearchResultWithLinkFactory searchResultWithLinkFactory,
     ICommentatorRepository commentatorRepository,
     IHadithCollectionRepository hadithCollectionRepository)
 {
     SearchEngine = searchEngine;
     SearchResultWithLinkFactory = searchResultWithLinkFactory;
     CommentatorRepository       = commentatorRepository;
     HadithCollectionRepository  = hadithCollectionRepository;
 }
Exemplo n.º 4
0
 public HadithCollectionsController(IHadithCollectionRepository hadithCollectionRepository)
 {
     HadithCollectionRepository = hadithCollectionRepository;
 }
Exemplo n.º 5
0
 public HadithViewModelFactory(IHadithCollectionRepository hadithCollectionRepository)
 {
     HadithCollectionRepository = hadithCollectionRepository;
 }