public IActionResult GetCurrentStockPrices()
        {
            IList <CurrentStocksModel> currentStocks = stockDao.GetCurrentStocks();

            return(new JsonResult(currentStocks));
        }