Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ICurrencyConverterService.cs
1using System;
2using System.Threading.Tasks;
5
6namespace Paiwise
7{
11 public interface ICurrencyConverterService : IModule, IProcessingSupport<CurrencyPair>
12 {
20 Task<ICurrencyConverterQuote> GetCurrencyConversionQuote(CaseInsensitiveString FromCurrency, CaseInsensitiveString ToCurrency);
21 }
22}
Represents a case-insensitive string.
Interface for currency converter services
Task< ICurrencyConverterQuote > GetCurrencyConversionQuote(CaseInsensitiveString FromCurrency, CaseInsensitiveString ToCurrency)
Gets a Currency Exchange Rate from one currency to another.
Interface for late-bound modules loaded at runtime.
Definition: IModule.cs:9
Interface for detecting interfaces supporting objects with predefined features.