Esempio n. 1
0
        public async System.Threading.Tasks.Task <IActionResult> Index(string CryptoSymbol)
        {
            if (CryptoSymbol == null)
            {
                CryptoSymbol = "LTC";
            }

            CurrencyModel cryptoObject = _getCryptoInfoService.GetCryptoObject(CryptoSymbol).Result;

            return(View(cryptoObject));
        }
Esempio n. 2
0
        public IActionResult Index(string CryptoSymbol)
        {
            if (CryptoSymbol == null)
            {
                CryptoSymbol = "LTC";
            }

            CurrencyModel cryptoObject = _getCryptoInfoService.GetCryptoObject(CryptoSymbol).Result;

            return(View(cryptoObject));
        }