Esempio n. 1
0
 public AlbumController(IConfiguration configuration, IMemoryCache cache, IBranchContactService branchContactService,
                        IMenuService menuService, ISettingService settingService, ISocialNetworkService socialNetworkService, ILanguageService languageService)
     : base(configuration, cache, branchContactService, menuService, settingService, socialNetworkService, languageService)
 {
     _configuration = configuration;
     _cache         = cache;
 }
Esempio n. 2
0
 public ShoppingCartController(IConfiguration configuration, IMemoryCache cache,
                               IBrandService brandService, IBranchContactService branchContactService, IProductService productService,
                               IMenuService menuService, ISettingService settingService, ISocialNetworkService socialNetworkService, ILanguageService languageService)
     : base(configuration, cache, brandService, branchContactService, menuService, settingService,
            socialNetworkService, languageService)
 {
     _configuration  = configuration;
     _cache          = cache;
     _productService = productService;
 }
Esempio n. 3
0
 public BaseController(IConfiguration configuration, IMemoryCache cache, IBranchContactService branchContactService,
                       IMenuService menuService, ISettingService settingService, ISocialNetworkService socialNetworkService, ILanguageService languageService)
 {
     _configuration        = configuration;
     _cache                = cache;
     _settingService       = settingService;
     _socialNetworkService = socialNetworkService;
     _menuService          = menuService;
     _branchContactService = branchContactService;
     _languageService      = languageService;
 }
Esempio n. 4
0
 public ContactController(IConfiguration configuration, IMemoryCache cache,
                          IFeedbackService feedbackService, IAgencyInfoService agency,
                          IBrandService brandService, IBranchContactService branchContactService, ICoreService coreService,
                          IMenuService menuService, ISettingService settingService, ISocialNetworkService socialNetworkService, ILanguageService languageService)
     : base(configuration, cache, brandService, branchContactService, menuService, settingService, socialNetworkService, languageService)
 {
     _configuration     = configuration;
     _cache             = cache;
     _feedbackService   = feedbackService;
     _coreService       = coreService;
     _agencyInfoService = agency;
     _settingService    = settingService;
 }
Esempio n. 5
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;
 }
Esempio n. 6
0
 public BranchContactController(IBranchContactService branchContactService)
 {
     _branchContactService = branchContactService;
 }
Esempio n. 7
0
 public NotFoundController(IConfiguration configuration, IMemoryCache cache,
                           IBrandService brandService, IBranchContactService branchContactService,
                           IMenuService menuService, ISettingService settingService, ISocialNetworkService socialNetworkService, ILanguageService languageService)
     : base(configuration, cache, brandService, branchContactService, menuService, settingService, socialNetworkService, languageService)
 {
 }