public void GetOrderByIdDuplex(Int32 orderId)
        {
            // Get the order using two-way method
            var order = GetOrderById(orderId);

            // Set the order into callback result
            callback.OrderResult(order);
        }