Beispiel #1
0
        public HomeVideoViewComponent(
            IContentFileService contentFileService

            )
        {
            _contentFileService = contentFileService;
        }
        public ContentController(
            IContentService contentService,
            IContentFileService contentFileService,
            ICategoryService categoryService,
            ITagService tagService,
            IContentListService contentListService,
            IUploadService uploadService,
            IHostingEnvironment hostingEnvironment,
            IContentSelectedService contentSelectedService,
            IUnitOfWork uow,
            ILogger<ContentController> logger,
            IMapper mapper
        )
        {
            _contentListService = contentListService;
            _contentService = contentService;
            _contentFileService = contentFileService;
            _categoryService = categoryService;
            _tagService = tagService;
            _uow = uow;
            _logger = logger;
            _logger.CheckArgumentIsNull(nameof(_logger));
            _uploadService = uploadService;
            _hostingEnvironment = hostingEnvironment;
            _mapper = mapper;
            _contentSelectedService = contentSelectedService;

        }
 public VideoController(
     IContentFileService contentFileService,
     ITagService tagService
     )
 {
     _contentFileService = contentFileService;
     _tagService         = tagService;
 }
 public ContentFileController(
     IContentFileService contentFileService,
     IContentService contentService
     )
 {
     _contentFileService = contentFileService;
     _contentService     = contentService;
 }
Beispiel #5
0
 public AlbumController(
     ICategoryService categoryService,
     IContentService contentService,
     IContentFileService contentFileService
     )
 {
     _categoryService    = categoryService;
     _contentService     = contentService;
     _contentFileService = contentFileService;
 }
 public SearchController(
     ICategoryService categoryService,
     IContentFileService contentFileService,
     ITagService tagService
     )
 {
     _categoryService    = categoryService;
     _contentFileService = contentFileService;
     _tagService         = tagService;
 }
Beispiel #7
0
        public HomeController(
            ICategoryService categoryService,
            IContentFileService contentFileService,
            IContentService contentService,
            ITagService tagService,
            ISliderService sliderService,
            IAppSettingService appSettingService,
            IConfiguration config,
            IDeviceService deviceService

            )
        {
            _categoryService    = categoryService;
            _contentFileService = contentFileService;
            _contentService     = contentService;
            _tagService         = tagService;
            _sliderService      = sliderService;
            _appSettingService  = appSettingService;
            _deviceService      = deviceService;
            _config             = config;
        }