CommerceBuilder Version: 7.88.5267.6803
I'm extending the PaymentProviderBase class and when I try to compile, I get the following error. No suitable method found to override on the Initialize method. If I remove the override keyword from the method it will compile but the Initialize method is never called. Any feedback ASAP would be appreciated.
Thanks
JB
Extending PaymentProviderBase class issue
Re: Extending PaymentProviderBase class issue
Maybe you missed some in parameter? Try it like this and see what does it say
Code: Select all
public override void Initialize(int PaymentGatewayId, IDictionary<string, string> ConfigurationData)
{
base.Initialize(PaymentGatewayId, ConfigurationData);
// YOUR CUSTOM CODE GOES HERE
}