public async Task <CurrencyPair> GetCurrentCurrencyRate(string firstCurrency, string secondCurrency)
 {
     return(await _currencyService.GetCurrentCurrencyRate(firstCurrency, secondCurrency));
 }