Example #1
0
 public CartController(ICartSessionService cartSessionService, ICartService cartService, UserManager <CustomIdentityUser> userManager, ISupplementService supplementService)
 {
     _cartSessionService = cartSessionService;
     _cartService        = cartService;
     _userManager        = userManager;
     _supplementService  = supplementService;
 }
Example #2
0
 public CartTestController(
     ICartSessionService cartSessionService,
     ICartService cartService)
 {
     _cartSessionService = cartSessionService;
     _cartService        = cartService;
 }
Example #3
0
 public CartController(ICartSessionService cartSessionService, ICartService cartService,
                       IProductService productService)
 {
     _cartSessionService = cartSessionService;
     _cartService        = cartService;
     _productService     = productService;
 }
 public CartController(IProductService productService, ICartService cartService, ICartSessionService cartSessionService, IMapper mapper)
 {
     _productService     = productService;
     _cartService        = cartService;
     _cartSessionService = cartSessionService;
     _mapper             = mapper;
 }
 public CartController(ICartSessionService cartSessionService, ICartService cartService, IProductService productService, IHostingEnvironment hostingEnvironment,
                       Services.ICipherService cipherService)
 {
     _cartSessionService = cartSessionService;
     _cartService        = cartService;
     _productService     = productService;
     _cipherService      = cipherService;
 }
Example #6
0
 public OrderController(ICartSessionService cartSessionService, ICartService cartService, IOrderService orderService, UserManager <ApplicationUser> userManager, IAddressService addressService)
 {
     _cartSessionService = cartSessionService;
     _cartService        = cartService;
     _orderService       = orderService;
     _userManager        = userManager;
     _addressService     = addressService;
 }
 public CartController(ICartService cartService, IProductService productService, ICartSessionService cartSessionService, IPhotoService photoService, IOrderService orderService)
 {
     _cartService        = cartService;
     _productService     = productService;
     _photoService       = photoService;
     _cartSessionService = cartSessionService;
     _orderService       = orderService;
 }
Example #8
0
 public CartController(
     ICartSessionService cartSessionService,
     ICartService cartService,
     IBookService bookService)
 {
     _cartSessionService = cartSessionService;
     _cartService        = cartService;
     _bookService        = bookService;
 }
Example #9
0
 public CartController(ICartService cartService, ICartSessionService sessionService, IProductService productService, UserManager <CustomIdentityUser> userManager, IOrderLineService orderLineService, IOrderService orderService)
 {
     _cartService      = cartService;
     _sessionService   = sessionService;
     _productService   = productService;
     _userManager      = userManager;
     _orderLineService = orderLineService;
     _orderService     = orderService;
 }
 public CartController(IProductService productService, ICartSessionService cartSessionService, ICartService cartService, IOrderService orderService, IHttpContextAccessor httpContextAccessor, IOrderProductService orderProductService)
 {
     _productService      = productService;
     _cartSessionService  = cartSessionService;
     _cartService         = cartService;
     _orderService        = orderService;
     _httpContextAccessor = httpContextAccessor;
     _orderProductService = orderProductService;
 }
Example #11
0
 public OrderController(IOrderService orderService, IOrderLineService orderLineService, ICartSessionService cartSessionService, ISupplementService supplementService, IHttpContextAccessor httpContextAccessor, UserManager <CustomIdentityUser> userManager, IShippingDetailService shippingDetailService)
 {
     _orderService          = orderService;
     _orderLineService      = orderLineService;
     _cartSessionService    = cartSessionService;
     _supplementService     = supplementService;
     _httpContextAccessor   = httpContextAccessor;
     _userManager           = userManager;
     _shippingDetailService = shippingDetailService;
 }
Example #12
0
 public OrderController(
     UserManager <AppIdentityUser> userManager,
     IOrderService orderService,
     IMapper mapper,
     ICartSessionService cartSessionService
     )
 {
     _userManager        = userManager;
     _orderService       = orderService;
     _mapper             = mapper;
     _cartSessionService = cartSessionService;
 }
Example #13
0
 public CartController(ICartSessionService cartSessionService,
                       ICartService cartService,
                       IPizzaPriceCalculater pizzaPriceCalculater,
                       IPizzaTypeRepository pizzaTypeRepository,
                       ISizeRepository sizeRepository
                       )
 {
     _cartSessionService   = cartSessionService;
     _cartService          = cartService;
     _pizzaPriceCalculater = pizzaPriceCalculater;
     _pizzaTypeRepository  = pizzaTypeRepository;
     _sizeRepository       = sizeRepository;
 }
 public CartSummaryViewComponent(ICartSessionService cartSessionService)
 {
     _cartSessionService = cartSessionService;
 }
Example #15
0
 public CartController(IConfiguration configuration, ICartSessionService cartSessionService, ICartService cartService)
 {
     _configuration      = configuration;
     _cartSessionService = cartSessionService;
     _cartService        = cartService;
 }
Example #16
0
 public CartController(ICartSessionService cartSessionService, ICartService cartService, IUrunService urunService)
 {
     _cartSessionService = cartSessionService;
     _cartService        = cartService;
     _urunService        = urunService;
 }
Example #17
0
 public CartController(ICartSessionService cartSessionService, ICartService cartService, IProductService productService) //Dependency Injection
 {
     _cartSessionService = cartSessionService;
     _cartService        = cartService;
     _productService     = productService;
 }
 public CartDetailsViewComponent(ICartSessionService cartSessionService)
 {
     _cartSessionService = cartSessionService;
 }
Example #19
0
 public CartService(ICartSessionService cartSessionService)
 {
     _cartSessionService = cartSessionService;
 }
Example #20
0
 public CartSummary(ICartSessionService cartSessionService)
 {
     _cartSessionService = cartSessionService;
 }
 public BasketController(ICartSessionService cartSessionService, IBasketService basketService, IProductService productService)
 {
     _cartSessionService = cartSessionService;
     _productService     = productService;
     _basketService      = basketService;
 }