コード例 #1
0
 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;
 }
コード例 #2
0
        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
ファイル: AdminController.cs プロジェクト: synweb/rocms
 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;
 }
コード例 #4
0
 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;
 }