Skip to content

Commit c410932

Browse files
authored
Merge branch 'dotnet-core' into master
2 parents 1ffa57a + 3187ad0 commit c410932

29 files changed

+9857
-124
lines changed

AuthorizeNet.dll

219 KB
Binary file not shown.

AuthorizeNet.xml

Lines changed: 9637 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CustomerProfiles/CreateCustomerProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static ANetApiResponse Run(string ApiLoginID, string ApiTransactionKey, s
2626
var creditCard = new creditCardType
2727
{
2828
cardNumber = "4111111111111111",
29-
expirationDate = "0718"
29+
expirationDate = "1018"
3030
};
3131

3232
var bankAccount = new bankAccountType

CustomerProfiles/GetCustomerProfile.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
2525
Item = ApiTransactionKey,
2626
};
2727

28-
var request = new getCustomerProfileRequest();
28+
var request = new getCustomerProfileRequest();
2929
request.customerProfileId = customerProfileId;
3030

3131
// instantiate the controller that will call the service
3232
var controller = new getCustomerProfileController(request);
33-
controller.Execute();
33+
controller.Execute();
3434

3535
// get the response from the service (errors contained if any)
3636
var response = controller.GetApiResponse();

CustomerProfiles/UpdateCustomerPaymentProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
2727
var creditCard = new creditCardType
2828
{
2929
cardNumber = "4111111111111111",
30-
expirationDate = "0718"
30+
expirationDate = "1018"
3131
};
3232

3333
//===========================================================================

CustomerProfiles/UpdateCustomerShippingAddress.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
2727
var creditCard = new creditCardType
2828
{
2929
cardNumber = "4111111111111111",
30-
expirationDate = "0718"
30+
expirationDate = "1018"
3131
};
3232

3333
var paymentType = new paymentType { Item = creditCard };

FraudManagement/ApproveOrDeclineHeldTransaction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey)
2929
request.heldTransactionRequest = new heldTransactionRequestType
3030
{
3131
action = afdsTransactionEnum.approve,
32-
refTransId = "60012192922"
32+
refTransId = "60108066607"
3333
};
3434

3535
// instantiate the controller that will call the service

PaymentTransactions/AuthorizeCreditCard.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
2727
var creditCard = new creditCardType
2828
{
2929
cardNumber = "4111111111111111",
30-
expirationDate = "0718"
30+
expirationDate = "1018"
3131
};
3232

3333
//standard api call to retrieve response

PaymentTransactions/CaptureFundsAuthorizedThroughAnotherChannel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
2929
{
3030
// Change the cardNumber and expiration Date as required
3131
cardNumber = "4111111111111111",
32-
expirationDate = "0718"
32+
expirationDate = "1018"
3333
};
3434

3535
//standard api call to retrieve response

PaymentTransactions/ChargeCreditCard.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
2828
var creditCard = new creditCardType
2929
{
3030
cardNumber = "4111111111111111",
31-
expirationDate = "0718",
31+
expirationDate = "1018",
3232
cardCode = "123"
3333
};
3434

0 commit comments

Comments
 (0)