Testing.CountryRegionCurrency.CreateCountryRegionCurrency C# (CSharp) Méthode

CreateCountryRegionCurrency() public static méthode

Create a new CountryRegionCurrency object.
public static CreateCountryRegionCurrency ( global countryRegionCode, global currencyCode, global modifiedDate ) : CountryRegionCurrency
countryRegionCode global Initial value of the CountryRegionCode property.
currencyCode global Initial value of the CurrencyCode property.
modifiedDate global Initial value of the ModifiedDate property.
Résultat CountryRegionCurrency
        public static CountryRegionCurrency CreateCountryRegionCurrency(global::System.String countryRegionCode, global::System.String currencyCode, global::System.DateTime modifiedDate)
        {
            CountryRegionCurrency countryRegionCurrency = new CountryRegionCurrency();
            countryRegionCurrency.CountryRegionCode = countryRegionCode;
            countryRegionCurrency.CurrencyCode = currencyCode;
            countryRegionCurrency.ModifiedDate = modifiedDate;
            return countryRegionCurrency;
        }