From d82f36e7ee53d52b7a6df3ab9eccdd6746fe4a34 Mon Sep 17 00:00:00 2001 From: zhaque Date: Wed, 6 Jan 2016 16:41:20 +0530 Subject: [PATCH] Adding batchId to the request in GetBatchStatistics.cs --- TransactionReporting/GetBatchStatistics.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TransactionReporting/GetBatchStatistics.cs b/TransactionReporting/GetBatchStatistics.cs index 306d674..06893a1 100644 --- a/TransactionReporting/GetBatchStatistics.cs +++ b/TransactionReporting/GetBatchStatistics.cs @@ -29,6 +29,7 @@ public static void Run(String ApiLoginID, String ApiTransactionKey) // unique batch id string batchId = "4532808"; var request = new getBatchStatisticsRequest(); + request.batchId = batchId; // instantiate the controller that will call the service var controller = new getBatchStatisticsController(request);