예제 #1
0
        public IActionResult GetCurrencies()
        {
            try
            {
                var currencies = _currencyManager.GetAllCurrency();

                return(Ok(currencies));
            }
            catch (Exception)
            {
                return(NotFound());
            }
        }