public ActionResult <IEnumerable <string> > GetCurrencyCodes() { _logger.LogInformation("call GetCurrencyCodes method"); var serviceCallResult = _currencyManager.GetCurrencyCodes().ToList(); return(serviceCallResult); }