protected ProductCatalogBaseController(ICookieAuthentication cookieAuthentication,
                                        ICustomerService customerService,
                                        ICachedProductCatalogService cachedProductCatalogService) : base(cookieAuthentication,
                                                                                                         customerService)
 {
     _cachedProductCatalogService = cachedProductCatalogService;
 }
示例#2
0
 public HomeController(ICookieAuthentication cookieAuthentication,
                       ICustomerService customerService,
                       ICachedProductCatalogService cachedProductCatalogService) : base(cookieAuthentication,
                                                                                        customerService,
                                                                                        cachedProductCatalogService)
 {
 }
示例#3
0
 public BasketController(ICachedProductCatalogService cachedProductCatalogService,
                         IBasketService basketService,
                         ICookieAuthentication cookieAuthentication,
                         ICustomerService customerService) : base(cookieAuthentication,
                                                                  customerService,
                                                                  cachedProductCatalogService)
 {
     _basketService = basketService;
 }
示例#4
0
 public ProductController(ICookieStorageService cookieStorageService,
                          IConfiguration configuration,
                          ICookieAuthentication cookieAuthentication,
                          ICustomerService customerService,
                          ICachedProductCatalogService cachedProductCatalogService) : base(cookieAuthentication,
                                                                                           customerService,
                                                                                           cachedProductCatalogService)
 {
     _configuration = configuration;
 }