Skip to content

Commit cc3a4dc

Browse files
committed
fix comment
1 parent 98c1970 commit cc3a4dc

35 files changed

+35
-35
lines changed

CustomerProfiles/CreateCustomerProfile.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public static ANetApiResponse Run(string ApiLoginID, string ApiTransactionKey, s
8080

8181
createCustomerProfileResponse response = controller.GetApiResponse(); // get the response from the service (errors contained if any)
8282

83-
//validate
83+
// validate response
8484
if (response != null && response.messages.resultCode == messageTypeEnum.Ok)
8585
{
8686
if (response != null && response.messages.message != null)

CustomerProfiles/CreateCustomerProfileFromTransaction.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static ANetApiResponse Run(string ApiLoginID, string ApiTransactionKey, s
4242

4343
createCustomerProfileResponse response = controller.GetApiResponse();
4444

45-
//validate
45+
// validate response
4646
if (response != null && response.messages.resultCode == messageTypeEnum.Ok)
4747
{
4848
if (response != null && response.messages.message != null)

MobileInAppTransactions/CreateAnAcceptTransaction.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, D
4646
// get the response from the service (errors contained if any)
4747
var response = controller.GetApiResponse();
4848

49-
//validate
49+
// validate response
5050
if (response != null)
5151
{
5252
if (response.messages.resultCode == messageTypeEnum.Ok)

MobileInAppTransactions/CreateAnAndroidPayTransaction.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, D
4646
// get the response from the service (errors contained if any)
4747
var response = controller.GetApiResponse();
4848

49-
//validate
49+
// validate response
5050
if (response != null)
5151
{
5252
if (response.messages.resultCode == messageTypeEnum.Ok)

MobileInAppTransactions/CreateAnApplePayTransaction.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, D
4646
// get the response from the service (errors contained if any)
4747
var response = controller.GetApiResponse();
4848

49-
//validate
49+
// validate response
5050
if (response != null)
5151
{
5252
if (response.messages.resultCode == messageTypeEnum.Ok)

PayPalExpressCheckout/AuthorizationAndCapture.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
4949
// get the response from the service (errors contained if any)
5050
var response = controller.GetApiResponse();
5151

52-
//validate
52+
// validate response
5353
if (response != null)
5454
{
5555
if (response.messages.resultCode == messageTypeEnum.Ok)

PayPalExpressCheckout/AuthorizationAndCaptureContinued.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
5151
// get the response from the service (errors contained if any)
5252
var response = controller.GetApiResponse();
5353

54-
//validate
54+
// validate response
5555
if (response != null)
5656
{
5757
if (response.messages.resultCode == messageTypeEnum.Ok)

PayPalExpressCheckout/AuthorizationOnly.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
4949
// get the response from the service (errors contained if any)
5050
var response = controller.GetApiResponse();
5151

52-
//validate
52+
// validate response
5353
if (response != null)
5454
{
5555
if (response.messages.resultCode == messageTypeEnum.Ok)

PayPalExpressCheckout/AuthorizationOnlyContinued.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
5151
// get the response from the service (errors contained if any)
5252
var response = controller.GetApiResponse();
5353

54-
//validate
54+
// validate response
5555
if (response != null)
5656
{
5757
if (response.messages.resultCode == messageTypeEnum.Ok)

PayPalExpressCheckout/Credit.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
5050
// get the response from the service (errors contained if any)
5151
var response = controller.GetApiResponse();
5252

53-
//validate
53+
// validate response
5454
if (response != null)
5555
{
5656
if (response.messages.resultCode == messageTypeEnum.Ok)

PayPalExpressCheckout/GetDetails.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
5050
// get the response from the service (errors contained if any)
5151
var response = controller.GetApiResponse();
5252

53-
//validate
53+
// validate response
5454
if (response != null)
5555
{
5656
if (response.messages.resultCode == messageTypeEnum.Ok)

PayPalExpressCheckout/PriorAuthorizationCapture.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
5050
// get the response from the service (errors contained if any)
5151
var response = controller.GetApiResponse();
5252

53-
//validate
53+
// validate response
5454
if (response != null)
5555
{
5656
if (response.messages.resultCode == messageTypeEnum.Ok)

PayPalExpressCheckout/Void.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
4949
// get the response from the service (errors contained if any)
5050
var response = controller.GetApiResponse();
5151

52-
//validate
52+
// validate response
5353
if (response != null)
5454
{
5555
if (response.messages.resultCode == messageTypeEnum.Ok)

PaymentTransactions/AuthorizeCreditCard.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
4949
// get the response from the service (errors contained if any)
5050
var response = controller.GetApiResponse();
5151

52-
//validate
52+
// validate response
5353
if(response != null){
5454
if(response.messages.resultCode == messageTypeEnum.Ok){
5555
if(response.transactionResponse.messages != null)

PaymentTransactions/CaptureFundsAuthorizedThroughAnotherChannel.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
5858
// get the response from the service (errors contained if any)
5959
var response = controller.GetApiResponse();
6060

61-
//validate
61+
// validate response
6262
if (response != null)
6363
{
6464
if (response.messages.resultCode == messageTypeEnum.Ok)

PaymentTransactions/CapturePreviouslyAuthorizedAmount.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
4848
// get the response from the service (errors contained if any)
4949
var response = controller.GetApiResponse();
5050

51-
//validate
51+
// validate response
5252
if (response != null)
5353
{
5454
if (response.messages.resultCode == messageTypeEnum.Ok)

PaymentTransactions/ChargeCreditCard.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
6868
// get the response from the service (errors contained if any)
6969
var response = controller.GetApiResponse();
7070

71-
//validate
71+
// validate response
7272
if (response != null)
7373
{
7474
if (response.messages.resultCode == messageTypeEnum.Ok)

PaymentTransactions/ChargeCustomerProfile.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
4646
// get the response from the service (errors contained if any)
4747
var response = controller.GetApiResponse();
4848

49-
//validate
49+
// validate response
5050
if (response != null)
5151
{
5252
if (response.messages.resultCode == messageTypeEnum.Ok)

PaymentTransactions/ChargeEncryptedTrackData.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
7979
// get the response from the service (errors contained if any)
8080
var response = controller.GetApiResponse();
8181

82-
//validate
82+
// validate response
8383
if (response != null)
8484
{
8585
if (response.messages.resultCode == messageTypeEnum.Ok)

PaymentTransactions/ChargeTokenizedCreditCard.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey)
5353
// get the response from the service (errors contained if any)
5454
var response = controller.GetApiResponse();
5555

56-
//validate
56+
// validate response
5757
if (response != null)
5858
{
5959
if (response.messages.resultCode == messageTypeEnum.Ok)

PaymentTransactions/ChargeTrackData.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
6464
// get the response from the service (errors contained if any)
6565
var response = controller.GetApiResponse();
6666

67-
//validate
67+
// validate response
6868
if (response != null)
6969
{
7070
if (response.messages.resultCode == messageTypeEnum.Ok)

PaymentTransactions/CreateAnAcceptPaymentTransaction.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
6868
// get the response from the service (errors contained if any)
6969
var response = controller.GetApiResponse();
7070

71-
//validate
71+
// validate response
7272
if (response != null)
7373
{
7474
if (response.messages.resultCode == messageTypeEnum.Ok)

PaymentTransactions/GetAnAcceptPaymentPage.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
4848
// get the response from the service (errors contained if any)
4949
var response = controller.GetApiResponse();
5050

51-
//validate
51+
// validate response
5252
if (response != null && response.messages.resultCode == messageTypeEnum.Ok)
5353
{
5454
Console.WriteLine("Message code : " + response.messages.message[0].code);

PaymentTransactions/RefundTransaction.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
5050
// get the response from the service (errors contained if any)
5151
var response = controller.GetApiResponse();
5252

53-
//validate
53+
// validate response
5454
if (response != null)
5555
{
5656
if (response.messages.resultCode == messageTypeEnum.Ok)

PaymentTransactions/UpdateSplitTenderGroup.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey)
3838
controller.Execute();
3939
var response = controller.GetApiResponse();
4040

41-
//validate
41+
// validate response
4242
if (response != null && response.messages.resultCode == messageTypeEnum.Ok)
4343
{
4444
Console.WriteLine("Successfully Updated ... ");

PaymentTransactions/VoidTransaction.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
4949
// get the response from the service (errors contained if any)
5050
var response = controller.GetApiResponse();
5151

52-
//validate
52+
// validate response
5353
if (response != null)
5454
{
5555
if (response.messages.resultCode == messageTypeEnum.Ok)

RecurringBilling/CancelSubscription.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
2929

3030
ARBCancelSubscriptionResponse response = controller.GetApiResponse(); // get the response from the service (errors contained if any)
3131

32-
//validate
32+
// validate response
3333
if (response != null && response.messages.resultCode == messageTypeEnum.Ok)
3434
{
3535
if (response != null && response.messages.message != null)

RecurringBilling/CreateSubscription.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
6969

7070
ARBCreateSubscriptionResponse response = controller.GetApiResponse(); // get the response from the service (errors contained if any)
7171

72-
//validate
72+
// validate response
7373
if (response != null && response.messages.resultCode == messageTypeEnum.Ok)
7474
{
7575
if (response != null && response.messages.message != null)

RecurringBilling/CreateSubscriptionFromCustomerProfile.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
7070

7171
ARBCreateSubscriptionResponse response = controller.GetApiResponse(); // get the response from the service (errors contained if any)
7272

73-
//validate
73+
// validate response
7474
if (response != null && response.messages.resultCode == messageTypeEnum.Ok)
7575
{
7676
if (response != null && response.messages.message != null)

RecurringBilling/GetListOfSubscriptions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey)
3030

3131
ARBGetSubscriptionListResponse response = controller.GetApiResponse(); // get the response from the service (errors contained if any)
3232

33-
//validate
33+
// validate response
3434
if (response != null && response.messages.resultCode == messageTypeEnum.Ok)
3535
{
3636
if (response != null && response.messages.message != null && response.subscriptionDetails != null)

RecurringBilling/GetSubscription.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
3030

3131
ARBGetSubscriptionResponse response = controller.GetApiResponse(); // get the response from the service (errors contained if any)
3232

33-
//validate
33+
// validate response
3434
if (response != null && response.messages.resultCode == messageTypeEnum.Ok)
3535
{
3636
if (response.subscription != null)

RecurringBilling/GetSubscriptionStatus.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
3131

3232
ARBGetSubscriptionStatusResponse response = controller.GetApiResponse(); // get the response from the service (errors contained if any)
3333

34-
//validate
34+
// validate response
3535
if (response != null && response.messages.resultCode == messageTypeEnum.Ok)
3636
{
3737
if (response != null && response.messages.message != null)

RecurringBilling/UpdateSubscription.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public static ANetApiResponse Run(string ApiLoginID, string ApiTransactionKey, s
6969

7070
ARBUpdateSubscriptionResponse response = controller.GetApiResponse();
7171

72-
//validate
72+
// validate response
7373
if (response != null && response.messages.resultCode == messageTypeEnum.Ok)
7474
{
7575
if (response != null && response.messages.message != null)

VisaCheckout/CreateVisaCheckoutTransaction.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey)
4848
controller.Execute();
4949
var response = controller.GetApiResponse();
5050

51-
//validate
51+
// validate response
5252
if (response != null)
5353
{
5454
if (response.messages.resultCode == messageTypeEnum.Ok)

VisaCheckout/DecryptVisaCheckoutData.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey)
4444

4545
if (decryptPaymentDataResponse != null)
4646
{
47-
//validate response
47+
// validate response
4848
Console.WriteLine("Result : "+decryptPaymentDataResponse.messages.message);
4949
Console.WriteLine(" : "+decryptPaymentDataResponse.messages.resultCode);
5050
Console.WriteLine("First Name : "+decryptPaymentDataResponse.billingInfo.firstName);

0 commit comments

Comments
 (0)