Testing.CountryRegionCurrency.CreateCountryRegionCurrency C# (CSharp) 메소드

CreateCountryRegionCurrency() 공개 정적인 메소드

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.
리턴 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;
        }