Table of Contents

Class CountriesForTaxPurposesConverter

Namespace
Payetools.Common.Model
Assembly
Payetools.Common.dll

Converter that translates between the string format of countries based on ISO-3166 and CountriesForTaxPurposes enum values.

public static class CountriesForTaxPurposesConverter
Inheritance
CountriesForTaxPurposesConverter
Inherited Members

Methods

ToEnum(string?)

Gets the CountriesForTaxPurposes enum value for the supplied country or space separated list of ISO-3166 countries, e.g., "GB-ENG GB-NIR".

public static CountriesForTaxPurposes ToEnum(string? iso3166Countries)

Parameters

iso3166Countries string

Space separated list of ISO-3166 countries.

Returns

CountriesForTaxPurposes

Equivalent CountriesForTaxPurposes enum value.

Exceptions

ArgumentException

Thrown if an invalid country value is supplied.

ToString(CountriesForTaxPurposes)

Gets the ISO-3166 sub-entity for the supplied country or countries enum value.

public static string ToString(CountriesForTaxPurposes countries)

Parameters

countries CountriesForTaxPurposes

Instance of CountriesForTaxPurposes specifying one or more countries with the UK.

Returns

string

Space separated ISO-3166 countries list, e.g., "GB-ENG GB-NIR".