Microsoft.Extensions.DependencyInjection integration for IbanNet; IbanNet provides an IBAN validator and parser.
$ dotnet add package IbanNet.DependencyInjection.ServiceProviderMicrosoft.Extensions.DependencyInjection integration for IbanNet; IbanNet provides an IBAN validator and parser.
This library registers the following services:
IIbanValidatorIIbanParserIIbanRegistryIIbanGeneratorAdd IbanNet services:
services.AddIbanNet();
Or add IbanNet services with configuration:
services
.AddIbanNet(opts => opts
.UseRegistryProvider(new SwiftRegistryProvider())
.WithRule<MyCustomRule>()
);
Please check out the contribution guidelines.