Example #1
0
 public HomeController(IConfiguration configuration, IMemoryCache cache,
                       INewsService newsService, IVideoService videoService, IBannerService bannerService,
                       IBrandService brandService, IBranchContactService branchContactService,
                       IMenuService menuService, ISettingService settingService,
                       ISocialNetworkService socialNetworkService, ILanguageService languageService,
                       IProductService productService, ICoreValueService coreValueService)
     : base(configuration, cache, brandService, branchContactService, menuService, settingService, socialNetworkService, languageService)
 {
     _configuration  = configuration;
     _newsService    = newsService;
     _cache          = cache;
     _videoService   = videoService;
     _menuService    = menuService;
     _bannerService  = bannerService;
     _productService = productService;
     _coreService    = coreValueService;
 }
Example #2
0
 public CoreValuesController(ICoreValueService coreValueService)
 {
     _coreValueService = coreValueService;
 }