예제 #1
0
 public SearchResultWithLinkMapper(
     ICommentatorRepository commentatorRepository,
     IHadithCollectionRepository hadithCollectionRepository)
 {
     CommentatorRepository      = commentatorRepository;
     HadithCollectionRepository = hadithCollectionRepository;
 }
예제 #2
0
 public CommentariesForVerseFactory(
     IChapterRepository chapterRepository,
     ICommentatorRepository commentatorRepository,
     ICommentaryRepository commentaryRepository)
 {
     ChapterRepository     = chapterRepository;
     CommentatorRepository = commentatorRepository;
     CommentaryRepository  = commentaryRepository;
 }
예제 #3
0
 public VerseCommentaryController(
     ICommentatorRepository commentatorRepository,
     ICommentaryRepository commentaryRepository,
     ICommentariesForVerseFactory commentariesForVerseFactory,
     ISelectChapterAndVerseFactory selectChapterAndVerseFactory)
 {
     CommentatorRepository        = commentatorRepository;
     CommentaryRepository         = commentaryRepository;
     CommentariesForVerseFactory  = commentariesForVerseFactory;
     SelectChapterAndVerseFactory = selectChapterAndVerseFactory;
 }
예제 #4
0
 public SiteSearchController(
     ISearchEngine searchEngine,
     ISearchResultWithLinkFactory searchResultWithLinkFactory,
     ICommentatorRepository commentatorRepository,
     IHadithCollectionRepository hadithCollectionRepository)
 {
     SearchEngine = searchEngine;
     SearchResultWithLinkFactory = searchResultWithLinkFactory;
     CommentatorRepository       = commentatorRepository;
     HadithCollectionRepository  = hadithCollectionRepository;
 }
예제 #5
0
 public FeedbackService(IFeedbackRepository feedbackRepository, ICommentatorRepository commentatorRepository)
 {
     _feedbackRepository    = feedbackRepository;
     _commentatorRepository = commentatorRepository;
 }
예제 #6
0
 public CommentatorsController(ICommentatorRepository commentatorRepository)
 {
     CommentatorRepository = commentatorRepository;
 }