public async Task <IActionResult> Get(string id) { _logger.LogDebug("GET order"); var model = await _service.Get(id); return(Ok(model)); }
public OrderDto Get(Guid id) { var order = _orderAppService.Get(id); return(order); }
public OrderDTO GetById(string orderId) { return(_orderAppService.Get(orderId)); }