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;
 }
        public FileProcessorService(ILogger <FileProcessorService> logger, IConfigService configService, IVideoGalleryService videoGalleryService, IImageGalleryService imageGalleryService,
                                    IFolderService folderService)
        {
            this.logger              = logger;
            this.configService       = configService;
            this.videoGalleryService = videoGalleryService;
            this.imageGalleryService = imageGalleryService;
            this.folderService       = folderService;

            fileWatcherTimer          = new Timer(5000);
            fileWatcherTimer.Elapsed += FileWatcherTimer_Elapsed;
        }
Пример #3
0
 public AdminController(IMenuService menuService, ISettingsService settingsService, IPageService pageService,
                        IBlockService blockService, ISecurityService securityService, IAlbumService albumService,
                        ISliderService sliderService, IAnalyticsService analyticsService, IFileService fileService, IVideoGalleryService videoGallery,
                        IFormRequestService formRequestService, IMailService mailService, IReviewService reviewService, IImageService imageService, IOrderFormService orderFormService)
 {
     _menuService         = menuService;
     _settingsService     = settingsService;
     _pageService         = pageService;
     _blockService        = blockService;
     _securityService     = securityService;
     _albumService        = albumService;
     _sliderService       = sliderService;
     _analyticsService    = analyticsService;
     _fileService         = fileService;
     _videoGalleryService = videoGallery;
     _formRequestService  = formRequestService;
     _mailService         = mailService;
     _reviewService       = reviewService;
     _imageService        = imageService;
     _orderFormService    = orderFormService;
 }
 public VideoGalleryController(ILogger <VideoGalleryController> logger, IVideoGalleryService videoGalleryService)
 {
     this.logger = logger;
     this.videoGalleryService = videoGalleryService;
 }
Пример #5
0
 public VideoAlbumApiController(IVideoGalleryService videoGalleryService, ILogService logService)
 {
     _videoGalleryService = videoGalleryService;
     _logService          = logService;
 }
Пример #6
0
 public HomeController(IQnAService __IQnAService, IVideoGalleryService __IVideoGalleryService)
 {
     _IQnAService          = __IQnAService;
     _IVideoGalleryService = __IVideoGalleryService;
 }