Testing.CountryRegionCurrency.CreateCountryRegionCurrency C# (CSharp) Method

CreateCountryRegionCurrency() public static method

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.
return 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;
        }