public LandingPageController(IQnARepository __IQnARepository, IQnAService __IQnAService, IVideoGalleryRepository __IVideoGalleryRepository,
                              IVideoGalleryService __IVideoGalleryService, IQnAImageService __IQnAImageService, IQnAVideoService __IQnAVideoService)
 {
     _IQnARepository          = __IQnARepository;
     _IQnAService             = __IQnAService;
     _IVideoGalleryRepository = __IVideoGalleryRepository;
     _IVideoGalleryService    = __IVideoGalleryService;
     _IQnAImageService        = __IQnAImageService;
     _IQnAVideoService        = __IQnAVideoService;
 }
Beispiel #2
0
 public QnAController(IQnARepository repository)
 {
     this.repository = repository;
 }
Beispiel #3
0
 public EFChatbotRepository(UserManager <ApplicationUser> userManager, ApplicationDbContext db, IQnARepository qnARepository)
 {
     this.db            = db;
     this.qnaRepository = qnARepository;
     manager            = userManager;
 }
Beispiel #4
0
 public QnAService(IQnARepository __IQnARepository)
 {
     _IQnARepository = __IQnARepository;
 }