Esempio n. 1
0
 public CartController(ICartService cartService, ICartSessionHelper cartSessionHelper, IProductService productService, IShippingDetailService shippingDetailService, IUserService userService, ICityService cityService, IOrderService orderService)
 {
     _cartService           = cartService;
     _cartSessionHelper     = cartSessionHelper;
     _productService        = productService;
     _shippingDetailService = shippingDetailService;
     _userService           = userService;
     _cityService           = cityService;
     _orderService          = orderService;
 }
 public CartListViewComponent(ICartService cartService, ICartSessionHelper cartSessionHelper, IUnitOfWork unitOfWork)
 {
     _cartService       = cartService;
     _cartSessionHelper = cartSessionHelper;
     _unitOfWork        = unitOfWork;
 }
Esempio n. 3
0
 public CartController(ICartService cartService, ICartSessionHelper cartSessionHelper, IProductService productService)
 {
     this.cartService       = cartService;
     this.cartSessionHelper = cartSessionHelper;
     this.productService    = productService;
 }
Esempio n. 4
0
 public CartController(ICartService cartService, ICartSessionHelper cartSessionHelper, IProductService productService)
 {
     _cartService       = cartService;
     _cartSessionHelper = cartSessionHelper;
     _productService    = productService;
 }
 public CartController(ICartService cartService, IDrinkService drinkService, ICartSessionHelper cartSessionHelper)
 {
     _cartService       = cartService;
     _drinkService      = drinkService;
     _cartSessionHelper = cartSessionHelper;
 }
 public CartController(IProductRepository productRepo, ICartService cartService, ICartSessionHelper cartSessionHelper)
 {
     _productRepo       = productRepo;
     _cartService       = cartService;
     _cartSessionHelper = cartSessionHelper;
 }
Esempio n. 7
0
 public OrderController(IOrderService orderService, ICartSessionHelper cartSessionHelper)
 {
     _orderService      = orderService;
     _cartSessionHelper = cartSessionHelper;
 }
Esempio n. 8
0
 public CartSummaryViewComponent(ICartSessionHelper cartSessionHelper)
 {
     _cartSessionHelper = cartSessionHelper;
 }
Esempio n. 9
0
 public CartSummaryViewComponent(ICartService cartService, ICartSessionHelper cartSessionHelper)
 {
     _cartService       = cartService;
     _cartSessionHelper = cartSessionHelper;
 }