Exemplo n.º 1
0
 public HomeController(ILogger <HomeController> logger, IProductServices productServices, IVideoServices videoServices, ISliderServices sliderServices)
 {
     _logger          = logger;
     _productServices = productServices;
     _videoServices   = videoServices;
     _sliderServices  = sliderServices;
 }
Exemplo n.º 2
0
 public AdminController(ISliderServices sliderServices, IVideoServices videoServices, IProductServices productServices, ICategoryServices categoryServices, IPopularProductServices popularProductServices)
 {
     _sliderServices         = sliderServices;
     _videoServices          = videoServices;
     _productServices        = productServices;
     _categoryServices       = categoryServices;
     _popularProductServices = popularProductServices;
 }
 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;
 }
Exemplo n.º 4
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;
        }
Exemplo n.º 5
0
 public SliderController(ISliderServices bannerServices, IMapper mapper)
 {
     _bannerServices = bannerServices;
     _mapper         = mapper;
 }
Exemplo n.º 6
0
 public SliderViewComponent(ISliderServices sliderServices)
 {
     _sliderServices = sliderServices;
 }
Exemplo n.º 7
0
 public SliderController(ISliderServices sliderServices)
 {
     _sliderServices = sliderServices;
 }