예제 #1
0
        public IActionResult SellSelectedOption([FromBody] Option option)
        {
            var response = _optionService.SellOption(option);

            return(Ok(response));
        }