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

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