Exemplo n.º 1
0
 public HomeController(IRobotsService robotsService,
                       IManifestService manifestService,
                       IContactUsService contactUsService,
                       IUserSettingsService userSettingsService,
                       IUserProfileService userProfileService,
                       ILogService logService, IMapper mapper,
                       IVideoAttributesService videoAttributesService,
                       IBannerDetailsService bannerDetailsService,
                       ISitemapService sitemapService,
                       IOpenSearchService openSearchService,
                       IBrowserConfigService browserConfigService,
                       IFeedService feedService)
     : base(logService, mapper)
 {
     _videoAttributesService = videoAttributesService;
     _mapper = mapper;
     _userSettingsService  = userSettingsService;
     _userProfileService   = userProfileService;
     _bannerDetailsService = bannerDetailsService;
     _contactUsService     = contactUsService;
     _manifestService      = manifestService;
     _robotsService        = robotsService;
     _sitemapService       = sitemapService;
     _openSearchService    = openSearchService;
     _browserConfigService = browserConfigService;
     _feedService          = feedService;
 }
Exemplo n.º 2
0
 public AdminController(ILogService logService, IVideoAttributesService videoAttributesService, IMapper mapper)
     : base(logService, mapper)
 {
     _context                = new FluxyContext();
     _userManager            = new UserManager <ApplicationUser>(new UserStore <ApplicationUser>(_context));
     _videoAttributesService = videoAttributesService;
     _mapper = mapper;
 }
 public VideoManagementController(ILogService logService,
                                  IVideoAttributesService videoAttributesService, IMapper mapper,
                                  ICategoryService categoryService, ILanguageService languageService,
                                  IVideoSettingsService videoSettingsService)
     : base(logService, mapper)
 {
     _videoAttributesService = videoAttributesService;
     _mapper               = mapper;
     _categoryService      = categoryService;
     _languageService      = languageService;
     _videoSettingsService = videoSettingsService;
 }
Exemplo n.º 4
0
 public ProfileController(IUserProfileService userProfileService, IVideoAttributesService videoAttributesService,
                          IUserSettingsService userSettingsService, ILogService logService, IMapper mapper,
                          INewsletterService newsletterService, ICategoryService categoryService,
                          ILanguageService languageService, IVideoSettingsService videoSettingsService)
     : base(logService, mapper)
 {
     _userProfileService     = userProfileService;
     _userSettingsService    = userSettingsService;
     _videoAttributesService = videoAttributesService;
     _newsletterService      = newsletterService;
     _categoryService        = categoryService;
     _mapper               = mapper;
     _languageService      = languageService;
     _videoSettingsService = videoSettingsService;
 }
Exemplo n.º 5
0
 public VideoCategoriesController(ILogService logService, IMapper mapper, IVideoAttributesService videoAttributesService)
     : base(logService, mapper)
 {
     _mapper = mapper;
     _videoAttributesService = videoAttributesService;
 }