Пример #1
0
 public SearchResultWithLinkMapper(
     ICommentatorRepository commentatorRepository,
     IHadithCollectionRepository hadithCollectionRepository)
 {
     CommentatorRepository      = commentatorRepository;
     HadithCollectionRepository = hadithCollectionRepository;
 }
Пример #2
0
 public HadithIndexController(
     IHadithRepository hadithRepository,
     IHadithCollectionRepository hadithCollectionRepository,
     IHadithViewModelFactory hadithViewModelFactory)
 {
     HadithRepository           = hadithRepository;
     HadithCollectionRepository = hadithCollectionRepository;
     HadithViewModelFactory     = hadithViewModelFactory;
 }
Пример #3
0
 public SiteSearchController(
     ISearchEngine searchEngine,
     ISearchResultWithLinkFactory searchResultWithLinkFactory,
     ICommentatorRepository commentatorRepository,
     IHadithCollectionRepository hadithCollectionRepository)
 {
     SearchEngine = searchEngine;
     SearchResultWithLinkFactory = searchResultWithLinkFactory;
     CommentatorRepository       = commentatorRepository;
     HadithCollectionRepository  = hadithCollectionRepository;
 }
Пример #4
0
 public HadithCollectionsController(IHadithCollectionRepository hadithCollectionRepository)
 {
     HadithCollectionRepository = hadithCollectionRepository;
 }
Пример #5
0
 public HadithViewModelFactory(IHadithCollectionRepository hadithCollectionRepository)
 {
     HadithCollectionRepository = hadithCollectionRepository;
 }