Beispiel #1
0
 public VerseHadithsController(
     IChapterRepository chapterRepository,
     IHadithRepository hadithRepository,
     IHadithViewModelFactory hadithViewModelFactory)
 {
     ChapterRepository      = chapterRepository;
     HadithRepository       = hadithRepository;
     HadithViewModelFactory = hadithViewModelFactory;
 }
Beispiel #2
0
 public HadithIndexController(
     IHadithRepository hadithRepository,
     IHadithCollectionRepository hadithCollectionRepository,
     IHadithViewModelFactory hadithViewModelFactory)
 {
     HadithRepository           = hadithRepository;
     HadithCollectionRepository = hadithCollectionRepository;
     HadithViewModelFactory     = hadithViewModelFactory;
 }