public void CancelPaymentOrder(long paymentOrderId, string language) { TransactionResult transactionResult; transactionResult = orderServices.CancelPaymentOrder(paymentOrderId, language); if (transactionResult.HasError) { ReturnErrorResponse(transactionResult.Message); } }