public CountrySpecificCustomersController(ICountrySpecificCustomerService countrySpecificCustomerService)
 {
     if (countrySpecificCustomerService == null)
     {
         throw new ArgumentNullException("CountrySpecificCustomerService");
     }
     _countrySpecificCustomerService = countrySpecificCustomerService;
 }
		public CountrySpecificCustomersController(ICountrySpecificCustomerService countrySpecificCustomerService)
		{
			if (countrySpecificCustomerService == null) throw new ArgumentNullException("CountrySpecificCustomerService");
			_countrySpecificCustomerService = countrySpecificCustomerService;
		}