public PayPalCartManager(ICartManager cartManager, IShippingMethodUIService shippingMethodUiService,
     CartModel cart)
 {
     _cartManager = cartManager;
     _shippingMethodUiService = shippingMethodUiService;
     _cart = cart;
 }
Exemple #2
0
 public PayPalCartManager(ICartManager cartManager, IShippingMethodUIService shippingMethodUiService,
                          CartModel cart)
 {
     _cartManager             = cartManager;
     _shippingMethodUiService = shippingMethodUiService;
     _cart = cart;
 }
 public AssignShippingInfo(ICartSessionManager cartSessionManager, IGetShippingAddress getShippingAddress,
     IShippingMethodUIService shippingMethodUIService)
 {
     _cartSessionManager = cartSessionManager;
     _getShippingAddress = getShippingAddress;
     _shippingMethodUIService = shippingMethodUIService;
 }
Exemple #4
0
 public AssignShippingInfo(ICartSessionManager cartSessionManager, IGetShippingAddress getShippingAddress,
                           IShippingMethodUIService shippingMethodUIService)
 {
     _cartSessionManager      = cartSessionManager;
     _getShippingAddress      = getShippingAddress;
     _shippingMethodUIService = shippingMethodUIService;
 }
Exemple #5
0
 public GetPaypalShippingOptions(IPaypalExpressCartLoader paypalExpressCartLoader, ICartManager cartManager,
                                 ICartBuilder cartBuilder, IShippingMethodUIService shippingMethodUiService)
 {
     _paypalExpressCartLoader = paypalExpressCartLoader;
     _cartManager             = cartManager;
     _cartBuilder             = cartBuilder;
     _shippingMethodUIService = shippingMethodUiService;
 }
Exemple #6
0
 public SetShippingMethodService(CartModel cart, IShippingMethodUIService shippingMethodUIService,
                                 ICartManager cartManager, IUniquePageService uniquePageService)
 {
     _cart = cart;
     _shippingMethodUIService = shippingMethodUIService;
     _cartManager             = cartManager;
     _uniquePageService       = uniquePageService;
 }
 public GetPaypalShippingOptions(IPaypalExpressCartLoader paypalExpressCartLoader, ICartManager cartManager,
     ICartBuilder cartBuilder, IShippingMethodUIService shippingMethodUiService)
 {
     _paypalExpressCartLoader = paypalExpressCartLoader;
     _cartManager = cartManager;
     _cartBuilder = cartBuilder;
     _shippingMethodUIService = shippingMethodUiService;
 }
 public SetShippingMethodService(CartModel cart, IShippingMethodUIService shippingMethodUIService,
     ICartManager cartManager, IUniquePageService uniquePageService)
 {
     _cart = cart;
     _shippingMethodUIService = shippingMethodUIService;
     _cartManager = cartManager;
     _uniquePageService = uniquePageService;
 }
Exemple #9
0
 public GoogleBaseShippingService(ISession session, IShippingMethodUIService shippingMethodUIService)
 {
     _session = session;
     _shippingMethodUIService = shippingMethodUIService;
 }
 public GoogleBaseShippingService(ISession session, IShippingMethodUIService shippingMethodUIService)
 {
     _session = session;
     _shippingMethodUIService = shippingMethodUIService;
 }