public VideoController(IVideoServices videoServices, IVideoCategoryServices categoryServices, IPageMetaServices pageMetaServices, IMapper mapper)
 {
     _videoServices    = videoServices;
     _categoryServices = categoryServices;
     _pageMetaServices = pageMetaServices;
     _mapper           = mapper;
 }
Ejemplo n.º 2
0
 public VideoController(ICategoryVideoServices categoryVideoService, IContentServices services, IVideoServices videoService, IActionLogServices serviceLog)
 {
     this._services             = services;
     this._videoService         = videoService;
     this._categoryVideoService = categoryVideoService;
     this._serviceLog           = serviceLog;
 }
Ejemplo n.º 3
0
 public HomeController(ILogger <HomeController> logger, IProductServices productServices, IVideoServices videoServices, ISliderServices sliderServices)
 {
     _logger          = logger;
     _productServices = productServices;
     _videoServices   = videoServices;
     _sliderServices  = sliderServices;
 }
Ejemplo n.º 4
0
 public DefaultController(IContentServices services, IMenuServices menuServices, IConfigSystemServices configSystemServices, IVideoServices videoServices, ILanguageServices languageServices)
 {
     this._services             = services;
     this._menuServices         = menuServices;
     this._configSystemServices = configSystemServices;
     this._videoServices        = videoServices;
     this._languageServices     = languageServices;
 }
Ejemplo n.º 5
0
 public AdminController(ISliderServices sliderServices, IVideoServices videoServices, IProductServices productServices, ICategoryServices categoryServices, IPopularProductServices popularProductServices)
 {
     _sliderServices         = sliderServices;
     _videoServices          = videoServices;
     _productServices        = productServices;
     _categoryServices       = categoryServices;
     _popularProductServices = popularProductServices;
 }
Ejemplo n.º 6
0
 public NotFoundFilter(IBlogServices blogservices, IHaberServices haberservices, IMakaleServices makaleservices, INotServices notservices, IVideoServices videoservices)
 {
     _blogservices   = blogservices;
     _haberservices  = haberservices;
     _makaleservices = makaleservices;
     _notservices    = notservices;
     _videoservices  = videoservices;
 }
Ejemplo n.º 7
0
 public VideosController(IVideoServices videoServices, IMapper mapper, IMemoryCache cache,
                         ICommentServices commentServices, IVidconfileUserServices userServices)
 {
     this.videoServices   = videoServices ?? throw new NullReferenceException("videoServices cannot be null");
     this.mapper          = mapper ?? throw new NullReferenceException("mapper cannot be null");
     this.cache           = cache ?? throw new NullReferenceException("cache cannot be null");
     this.commentServices = commentServices ?? throw new NullReferenceException("commentServices cannot be null");
     this.userServices    = userServices ?? throw new NullReferenceException("userServices cannot be null");
 }
Ejemplo n.º 8
0
 public VideoController(IVideoServices service, ILogger <VideoController> logger, IMapper mapper, UserManager <UserModel> userManager, IConfiguration config, IHostingEnvironment env)
 {
     _logger      = logger;
     _service     = service;
     _mapper      = mapper;
     _userManager = userManager;
     _config      = config;
     _env         = env;
 }
Ejemplo n.º 9
0
 public VideoController
 (
     IVideoServices videoServices,
     ILogger <VideoController> logger,
     IUrlHelper urlHelper
 ) : base(logger, urlHelper)
 {
     _videoServices = videoServices;
 }
Ejemplo n.º 10
0
 public VideosController(IVideoCategoryServices categoryServices, IVideoServices videoServices,
                         IReservationServices reservationServices, ICacheService cacheServices,
                         ILoggingService logger, IMapper mapper)
 {
     _categoryServices    = categoryServices;
     _videoServices       = videoServices;
     _reservationServices = reservationServices;
     _cacheServices       = cacheServices;
     _logger = logger;
     _mapper = mapper;
 }
Ejemplo n.º 11
0
 public HomeController(ILogger <HomeController> logger, IArticleServices articleServices, ICategoryServices categoryServices, IAuthorServices authorServices, ISliderServices sliderServices, INewsServices newsServices, INCategoryServices nCategoryServices, IActivitiesServices activitiesServices, IVideoServices videoServices)
 {
     _logger             = logger;
     _articleServices    = articleServices;
     _categoryServices   = categoryServices;
     _authorServices     = authorServices;
     _sliderServices     = sliderServices;
     _newsServices       = newsServices;
     _nCategoryServices  = nCategoryServices;
     _activitiesServices = activitiesServices;
     _videoServices      = videoServices;
 }
Ejemplo n.º 12
0
 public HomeController(ICategoryVideoServices categoryVideoServices, IFeedbackServices feedbackServices, IContentServices services, IMenuServices menuServices, IConfigSystemServices configSystemServices, IVideoServices videoServices, ILanguageServices languageService, IContactServices contactServices, ILienketWebServices lienKetServices)
 {
     this._services              = services;
     this._menuServices          = menuServices;
     this._configSystemServices  = configSystemServices;
     this._videoServices         = videoServices;
     this._languageService       = languageService;
     this._feedbackServices      = feedbackServices;
     this._categoryVideoServices = categoryVideoServices;
     this._contactServices       = contactServices;
     this._lienKetServices       = lienKetServices;
 }
 public PlayerApisController(IPlayerServices playerServices,
                             IJobServices jobServices,
                             IVideoServices videoServices,
                             IMapper mapper,
                             IConfiguration configuration
                             )
 {
     _playerServices = playerServices;
     _jobServices    = jobServices;
     _videoServices  = videoServices;
     _mapper         = mapper;
     _configuration  = configuration;
 }
Ejemplo n.º 14
0
        //Rol İşlemleri

        //private RoleManager<IdentityRole> _roleManager;
        //private UserManager<User> _UserManager;

        public AdminController(IArticleServices articleServices, IHostingEnvironment env, ICategoryServices categoryServices, IAuthorServices authorServices, INewsServices newsServices, INCategoryServices nCategoryServices, IVideoServices videoServices, ISliderServices sliderServices, IActivitiesServices activitiesServices)
        {
            _articleServices    = articleServices;
            _categoryServices   = categoryServices;
            _authorServices     = authorServices;
            _newsServices       = newsServices;
            _nCategoryServices  = nCategoryServices;
            _videoServices      = videoServices;
            _sliderServices     = sliderServices;
            _activitiesServices = activitiesServices;
            //_roleManager = IdentityRole;
            //_UserManager = userManager;
            _env = env;
        }
Ejemplo n.º 15
0
 public HomeController(IUniversiteServices service, IVideoServices videoServices)
 {
     _services      = service;
     _videoServices = videoServices;
 }
Ejemplo n.º 16
0
 public VideoOneViewComponent(IVideoServices videoServices)
 {
     _videoServices = videoServices;
 }
 public VideosController(IVideoServices videoServices, UserManager <AppUser> userManager)
 {
     _videoServices = videoServices;
     _userManager   = userManager;
 }
Ejemplo n.º 18
0
 public VideosController(IVideoServices videoservices, IMapper mapper)
 {
     _videoservices = videoservices;
     _mapper        = mapper;
 }
Ejemplo n.º 19
0
 public VideosController(SiteDbContext context, IVideoServices services)
 {
     _context  = context;
     _services = services;
 }
Ejemplo n.º 20
0
 public ThongKeController(IVisitorServices visitorServices, IContentServices contentServices, IVideoServices videoServices)
 {
     _visitorServices = visitorServices;
     _contentServices = contentServices;
     _videoServices   = videoServices;
 }
 public VideoViewComponent(IVideoServices videoServices)
 {
     this._videoServices = videoServices;
 }