public CheckoutService(IHttpContextAccessor httpContext, IShoppingContext shoppingContext)
 {
     _httpContext     = httpContext;
     _shoppingContext = shoppingContext;
 }
 public UserController(IShoppingContext _context)
 {
     context = _context;
 }
 public ShoppingUow(IShoppingContext context, IRepositoryProvider repositoryProvider) : base(context, repositoryProvider)
 {
 }
Beispiel #4
0
 public StoreController(IShoppingContext shoppingContext, CheckoutService checkoutService)
 {
     _shoppingContext = shoppingContext;
     _checkoutService = checkoutService;
 }
 public CartController(IHttpContextAccessor httpContext, IShoppingContext shoppingContext, CheckoutService checkoutService)
 {
     _httpContext     = httpContext;
     _shoppingContext = shoppingContext;
     _checkoutService = checkoutService;
 }