public PaymentDetailsController(CartModel cart, IGetExistingAddressOptions getExistingAddressOptions, IGetCountryOptions getCountryOptions, ICartManager cartManager)
 {
     _cart = cart;
     _getExistingAddressOptions = getExistingAddressOptions;
     _getCountryOptions         = getCountryOptions;
     _cartManager = cartManager;
 }
Ejemplo n.º 2
0
 public SetShippingAddressService(IUniquePageService uniquePageService, ICartManager cartManager, CartModel cart,
     IGetCountryOptions getCountryOptions,
     IGetExistingAddressOptions getExistingAddressOptions)
 {
     _uniquePageService = uniquePageService;
     _cartManager = cartManager;
     _cart = cart;
     _getCountryOptions = getCountryOptions;
     _getExistingAddressOptions = getExistingAddressOptions;
 }
 public SetShippingAddressService(IUniquePageService uniquePageService, ICartManager cartManager, CartModel cart,
                                  IGetCountryOptions getCountryOptions,
                                  IGetExistingAddressOptions getExistingAddressOptions)
 {
     _uniquePageService = uniquePageService;
     _cartManager       = cartManager;
     _cart = cart;
     _getCountryOptions         = getCountryOptions;
     _getExistingAddressOptions = getExistingAddressOptions;
 }