Ejemplo n.º 1
0
        public IActionResult GetAcceptOrder([FromQuery] string exchangeName)
        {
            var result = _tradingService.GetAcceptOrder(exchangeName);

            if (result == null)
            {
                return(NotFound());
            }

            return(Ok(result.Value));
        }