Method | Description | |
---|---|---|
CountryService ( ICacheManager cacheManager, IRepository countryRepository, IRepository storeMappingRepository, IStoreContext storeContext, CatalogSettings catalogSettings, IEventPublisher eventPublisher ) : System |
Ctor
|
|
DeleteCountry ( Country country ) : void |
Deletes a country
|
|
GetAllCountries ( bool showHidden = false ) : IList |
Gets all countries
|
|
GetAllCountriesForBilling ( bool showHidden = false ) : IList |
Gets all countries that allow billing
|
|
GetAllCountriesForShipping ( bool showHidden = false ) : IList |
Gets all countries that allow shipping
|
|
GetCountriesByIds ( Array countryIds ) : IList |
Get countries by identifiers
|
|
GetCountryById ( int countryId ) : Country |
Gets a country
|
|
GetCountryByThreeLetterIsoCode ( string threeLetterIsoCode ) : Country |
Gets a country by three letter ISO code
|
|
GetCountryByTwoLetterIsoCode ( string twoLetterIsoCode ) : Country |
Gets a country by two letter ISO code
|
|
InsertCountry ( Country country ) : void |
Inserts a country
|
|
UpdateCountry ( Country country ) : void |
Updates the country
|
public CountryService ( ICacheManager cacheManager, IRepository countryRepository, IRepository storeMappingRepository, IStoreContext storeContext, CatalogSettings catalogSettings, IEventPublisher eventPublisher ) : System | ||
cacheManager | ICacheManager | Cache manager |
countryRepository | IRepository | Country repository |
storeMappingRepository | IRepository | Store mapping repository |
storeContext | IStoreContext | Store context |
catalogSettings | CatalogSettings | Catalog settings |
eventPublisher | IEventPublisher | Event published |
return | System |
public DeleteCountry ( Country country ) : void | ||
country | Country | Country |
return | void |
public GetAllCountries ( bool showHidden = false ) : IList |
||
showHidden | bool | A value indicating whether to show hidden records |
return | IList |
public GetAllCountriesForBilling ( bool showHidden = false ) : IList |
||
showHidden | bool | A value indicating whether to show hidden records |
return | IList |
public GetAllCountriesForShipping ( bool showHidden = false ) : IList |
||
showHidden | bool | A value indicating whether to show hidden records |
return | IList |
public GetCountriesByIds ( Array countryIds ) : IList |
||
countryIds | Array | Country identifiers |
return | IList |
public GetCountryById ( int countryId ) : Country | ||
countryId | int | Country identifier |
return | Country |
public GetCountryByThreeLetterIsoCode ( string threeLetterIsoCode ) : Country | ||
threeLetterIsoCode | string | Country three letter ISO code |
return | Country |
public GetCountryByTwoLetterIsoCode ( string twoLetterIsoCode ) : Country | ||
twoLetterIsoCode | string | Country two letter ISO code |
return | Country |
public InsertCountry ( Country country ) : void | ||
country | Country | Country |
return | void |
public UpdateCountry ( Country country ) : void | ||
country | Country | Country |
return | void |