public async Task <IActionResult> GetStockBySmybol(string symbol)
        {
            Stock stock = await _stockDao.FindBySymbol(symbol);

            if (stock == null)
            {
                return(NotFound($"Stock for symbol {symbol} not found"));
            }

            return(Ok(stock));
        }