public async Task <string> ExecuteAsync(UpdateOrderCommand command)
        {
            _logger.Information("Processing Update command: {@command}.", command);

            return(await _ordersRepository.AddOrUpdateAsync(_mapper.Map <OrderEntity>(command)).ConfigureAwait(false));
        }