public AddressBookService(
     CustomerContextFacade customerContext,
     CountryManagerFacade countryManager,
     IOrderFactory orderFactory)
 {
     _customerContext = customerContext;
     _countryManager = countryManager;
     _orderFactory = orderFactory;
 }
 public CheckoutService(
     Func<string, CartHelper> cartHelper, 
     ICurrentMarket currentMarket, 
     LanguageService languageService, 
     CountryManagerFacade countryManager)
 {
     _cartHelper = cartHelper;
     _currentMarket = currentMarket;
     _languageService = languageService;
     _countryManager = countryManager;
 }
 public AddressBookService(CustomerContextFacade customerContext, CountryManagerFacade countryManager)
 {
     _customercontext = customerContext;
     _countryManager = countryManager;
 }