@@ -8,7 +8,7 @@ public class Country
8
8
public string VendorCentralURL { get ; set ; }
9
9
public string AmazonlUrl { get ; set ; }
10
10
11
- private Country ( string code , string name , string domain , string sellercentralUrl , string vendorCentralURL )
11
+ private Country ( string code , string name , string domain , string sellercentralUrl , string vendorCentralURL )
12
12
{
13
13
Code = code ;
14
14
Name = name ;
@@ -19,14 +19,15 @@ private Country(string code, string name,string domain, string sellercentralUrl,
19
19
AmazonlUrl = $ "https://amazon.{ domain } ";
20
20
}
21
21
22
- public static Country US { get { return new Country ( "US" , "United States of America" , "com" , "https://sellercentral.amazon.com" , "https://vendorcentral.amazon.ca" ) ; } }
22
+ public static Country US { get { return new Country ( "US" , "United States of America" , "com" , "https://sellercentral.amazon.com" , "https://vendorcentral.amazon.ca" ) ; } }
23
23
public static Country CA { get { return new Country ( "CA" , "Canada" , "ca" , "https://sellercentral.amazon.ca" , "https://vendorcentral.amazon.ca" ) ; } }
24
24
public static Country MX { get { return new Country ( "MX" , "Mexico" , "com.mx" , "https://sellercentral.amazon.com.mx" , "https://vendorcentral.amazon.com.mx" ) ; } }
25
25
public static Country BR { get { return new Country ( "BR" , "Brazil" , "com.br" , "https://sellercentral.amazon.com.br" , "https://vendorcentral.amazon.com.br" ) ; } }
26
26
27
27
public static Country ES { get { return new Country ( "ES" , "Spain" , "es" , "https://sellercentral-europe.amazon.com" , "https://vendorcentral.amazon.es" ) ; } }
28
28
public static Country GB { get { return new Country ( "GB" , "United Kingdom" , "co.uk" , "https://sellercentral-europe.amazon.com" , "https://vendorcentral.amazon.co.uk" ) ; } }
29
29
public static Country FR { get { return new Country ( "FR" , "France" , "fr" , "https://sellercentral-europe.amazon.com" , "https://vendorcentral.amazon.fr" ) ; } }
30
+ public static Country BE { get { return new Country ( "BE" , "Belgium" , "be" , "https://sellercentral-europe.amazon.com" , "https://vendorcentral.amazon.eu" ) ; } }
30
31
public static Country NL { get { return new Country ( "NL" , "Netherlands" , "nl" , "https://sellercentral.amazon.nl" , "https://vendorcentral.amazon.nl" ) ; } }
31
32
public static Country DE { get { return new Country ( "DE" , "Germany" , "de" , "https://sellercentral-europe.amazon.com" , "https://vendorcentral.amazon.de" ) ; } }
32
33
public static Country IT { get { return new Country ( "IT" , "Italy" , "it" , "https://sellercentral-europe.amazon.com" , "https://vendorcentral.amazon.it" ) ; } }
0 commit comments