public void ThenICallCurrencyConvertorWithINRAndUSD(string baseCurrency, string toCurrency) { ClientInterface currencyconverter = new ClientInterface(); CurrencyConversionResponse response = currencyconverter.GetCurrencyCoverted(baseCurrency, toCurrency); rates = (Math.Round(response.result, 3)); }