namespace Nop.Services.Directory; /// /// GEO lookup service /// public partial interface IGeoLookupService { /// /// Get country ISO code /// /// IP address /// Country name string LookupCountryIsoCode(string ipAddress); /// /// Get country name /// /// IP address /// Country name string LookupCountryName(string ipAddress); }