public FooterViewComponent(IProductCategoryService productCategoryService, IContactService contactService,
                            IPantnerService pantnerService, IConfiguration config, IMemoryCache cache)
 {
     _productCategoryService = productCategoryService;
     _contactService         = contactService;
     _pantnerService         = pantnerService;
     _config = config;
     _cache  = cache;
 }
示例#2
0
 public PantnerController(IPantnerService pantnerService, IHostingEnvironment env, IAuthorizationService authorizationService)
 {
     _pantnerService       = pantnerService;
     _env                  = env;
     _authorizationService = authorizationService;
 }