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