Пример #1
0
        public async Task <ActionResult> ConvertCurrency(string fromCountry, string toCountry, double value)
        {
            double final_price = await _countryRepository.ConvertCurrency(fromCountry, toCountry, value);

            return(Ok(final_price));
        }