using Microsoft.Dynamics.ApplicationSuite.FinancialManagement.Currency.Framework;
using Microsoft.Dynamics.Currency.Instrumentation;
using System.Collections; using System.ComponentModel.Composition;
[ExportMetadataAttribute(enumStr(ExchangeRateProvider),ExchangeRateProvider::OANDA),ExportAttribute('Microsoft.Dynamics.ApplicationSuite.FinancialManagement.Currency.Framework.IExchangeRateProvider')]
class ExchangeRateProviderOanda implements IExchangeRateProvider
{
}
in the above code we have
ExchangeRateProvider::OANDA, but i wanna create for NBP, so what modifications are required
And how to proceed so that I can get NBP instead of OANDA on clicking new in the form...
can anyone please help out