예제 #1
0
        public IActionResult Put([FromBody] SharesEntity shares)
        {
            SharesService sharesService = new SharesService(db);

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