About • Installation • Contributing • Author • Support • License
NBGCurrencyNET is a high-quality C# wrapper for NBG Currency API
It comes with a built-in optimized, simple client which can be used to make all the basic requests to the Georgian LARI currency API.
You don't need to look up anything about how the API works and how you have to manage the SOAP requests.(compared to default settings). With the help of an abstraction layer it will be just a few lines to make things work.
Supported Currencies:
AED, AMD, AUD, AZN, BGN, BYR, CAD, CHF, CNY, CZK, DKK, EEK, EGP, EUR, GBP, HKD, HUF, ILS, INR, IRR, ISK, JPY, KGS, KWD, KZT, LTL, LVL, MDL, NOK, NZD, PLN, RON, RSD, RUB, SEK, SGD, TJS, TMT, TRY, UAH, USD, UZS
-
Download/Clone and just put the binary in your project 👍
-
Use Visual Studio Package Console 👍
Install-Package nbgcurrencynet -Version 1.0.0
- Use dotnet CLI 👍
dotnet add package nbgcurrencynet --version 1.0.0
You can use NBGCurrencyNET in you project by directly using
the main namespace.
To get you up and running, let's take a look at few usage examples.
Our Hello World project has just one source file, Program.cs
which looks like this:
Main client is the NBGCurrencyClient, which is a thread-safe singleton. All required methods are located in this class. Of course all of the methods are async and you need to call them with await.
GetCurrencyAsync
->float
GetCurrencyChangeAsync
->float
GetCurrencyDescriptionAsync
->string
GetCurrencyRateAsync
->int
GetCurrentDateAsync
->DateTimeOffset
using System;
using NBGCurrency.Client;
using NBGCurrency.Configuration;
namespace HelloWorld
{
class Program
{
public async void Main(string[] args)
{
var client = NBGCurrencyClient.Shared;
var usdToGel = await client.GetCurrencyAsync(CurrencyEnumCodes.USD);
var change = await client.GetCurrencyChangeAsync(CurrencyEnumCodes.USD);
var rate = await client.GetCurrencyChangeAsync(CurrencyEnumCodes.USD);
var description = await client.GetCurrencyDescriptionAsync(CurrencyEnumCodes.USD);
var todayDate = await client.GetCurrentDateAsync();
}
}
}
Got something interesting you'd like to share? Feel free to open an issue and share your ideas.
If you will like my work, make sure to star the repository.
Reach out to me at one of my socials: