Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IPaymentServiceProvider.cs
1using System.Threading.Tasks;
3
4namespace Paiwise
5{
10 {
17 Task<IPaymentService[]> GetServicesForPayment(CaseInsensitiveString Currency, CaseInsensitiveString Country);
18
26 Task<IPaymentService> GetServiceForPayment(string ServiceId, CaseInsensitiveString Currency, CaseInsensitiveString Country);
27 }
28}
Represents a case-insensitive string.
Interface for information about a service provider that users can use to pay for services.
Task< IPaymentService[]> GetServicesForPayment(CaseInsensitiveString Currency, CaseInsensitiveString Country)
Gets available payment services.
Task< IPaymentService > GetServiceForPayment(string ServiceId, CaseInsensitiveString Currency, CaseInsensitiveString Country)
Gets a payment service.
Interface for information about a service provider.