public IActionResult Post([FromBody] SharesEntity shares)
        {
            SharesService sharesService = new SharesService(db);

            return(Ok(sharesService.Add(shares)));
        }