Skip to content

Commit f732588

Browse files
included merchant boarding and MIT samples in project
1 parent ee7d5f9 commit f732588

10 files changed

+29
-9
lines changed

Source/Samples/MerchantBoarding/MerchantBoardingVPC.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public static InlineResponse2012 Run()
9595
EnableInterchangeOptimization = false,
9696
EnableSplitShipment = false,
9797
VisaDelegatedAuthenticationId = "123457",
98-
DomesticMerchantId = "123458",
98+
DomesticMerchantId = false,
9999
CreditCardRefundLimitPercent = "2",
100100
BusinessCenterCreditCardRefundLimitPercent = "3",
101101
AllowCapturesGreaterThanAuthorizations = false,

Source/Samples/Payments/Payments/CITInitiatingInstalmentSubscriptionUK.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using CyberSource.Api;
66
using CyberSource.Model;
77

8-
namespace Cybersource_rest_samples_dotnet.Samples.Payments.Payments
8+
namespace Cybersource_rest_samples_dotnet.Samples.Payments
99
{
1010
public class CITInitiatingInstalmentSubscriptionUK
1111
{

Source/Samples/Payments/Payments/CITInitiatingRecurringSubscription.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using CyberSource.Api;
66
using CyberSource.Model;
77

8-
namespace Cybersource_rest_samples_dotnet.Samples.Payments.Payments
8+
namespace Cybersource_rest_samples_dotnet.Samples.Payments
99
{
1010
public class CITInitiatingRecurringSubscription
1111
{

Source/Samples/Payments/Payments/CITPlacingCredentialOnFile.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using CyberSource.Api;
66
using CyberSource.Model;
77

8-
namespace Cybersource_rest_samples_dotnet.Samples.Payments.Payments
8+
namespace Cybersource_rest_samples_dotnet.Samples.Payments
99
{
1010
public class CITPlacingCredentialOnFile
1111
{

Source/Samples/Payments/Payments/MITIndustryPracticeDelayedCharge3RIVisa.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using CyberSource.Api;
66
using CyberSource.Model;
77

8-
namespace Cybersource_rest_samples_dotnet.Samples.Payments.Payments
8+
namespace Cybersource_rest_samples_dotnet.Samples.Payments
99
{
1010
public class MITIndustryPracticeDelayedCharge3RIVisa
1111
{

Source/Samples/Payments/Payments/MITIndustryPracticeResubmission.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using CyberSource.Api;
66
using CyberSource.Model;
77

8-
namespace Cybersource_rest_samples_dotnet.Samples.Payments.Payments
8+
namespace Cybersource_rest_samples_dotnet.Samples.Payments
99
{
1010
public class MITIndustryPracticeResubmission
1111
{

Source/Samples/Payments/Payments/MITInstalment.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using CyberSource.Api;
66
using CyberSource.Model;
77

8-
namespace Cybersource_rest_samples_dotnet.Samples.Payments.Payments
8+
namespace Cybersource_rest_samples_dotnet.Samples.Payments
99
{
1010
public class MITInstalment
1111
{

Source/Samples/Payments/Payments/MITRecurring.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using CyberSource.Api;
66
using CyberSource.Model;
77

8-
namespace Cybersource_rest_samples_dotnet.Samples.Payments.Payments
8+
namespace Cybersource_rest_samples_dotnet.Samples.Payments
99
{
1010
public class MITRecurring
1111
{

Source/Samples/Payments/Payments/MITUnscheduledCredentialOnFile.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using CyberSource.Api;
66
using CyberSource.Model;
77

8-
namespace Cybersource_rest_samples_dotnet.Samples.Payments.Payments
8+
namespace Cybersource_rest_samples_dotnet.Samples.Payments
99
{
1010
public class MITUnscheduledCredentialOnFile
1111
{

cybersource-rest-samples-csharp.csproj

+20
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@
105105
<Compile Include="Source\AuthenticationData\Configuration.cs" />
106106
<Compile Include="Source\AuthenticationData\RequestData.cs" />
107107
<Compile Include="Source\Configuration.cs" />
108+
<Compile Include="Source\MerchantBoardingConfiguration.cs" />
108109
<Compile Include="Source\Properties\AssemblyInfo.cs" />
109110
<Compile Include="Source\Resource\NumericUtility.cs" />
110111
<Compile Include="Source\SampleCode.cs" />
@@ -145,6 +146,17 @@
145146
<Compile Include="Source\Samples\Invoicing\Invoices\GetListOfInvoices.cs" />
146147
<Compile Include="Source\Samples\Invoicing\Invoices\SendInvoice.cs" />
147148
<Compile Include="Source\Samples\Invoicing\Invoices\UpdateInvoice.cs" />
149+
<Compile Include="Source\Samples\MerchantBoarding\CreateRegistration.cs" />
150+
<Compile Include="Source\Samples\MerchantBoarding\MerchantBoardingAmexDirect.cs" />
151+
<Compile Include="Source\Samples\MerchantBoarding\MerchantBoardingBarclays.cs" />
152+
<Compile Include="Source\Samples\MerchantBoarding\MerchantBoardingBinLookUp.cs" />
153+
<Compile Include="Source\Samples\MerchantBoarding\MerchantBoardingCUP.cs" />
154+
<Compile Include="Source\Samples\MerchantBoarding\MerchantBoardingEFTPOS.cs" />
155+
<Compile Include="Source\Samples\MerchantBoarding\MerchantBoardingFDIGlobal.cs" />
156+
<Compile Include="Source\Samples\MerchantBoarding\MerchantBoardingGPX.cs" />
157+
<Compile Include="Source\Samples\MerchantBoarding\MerchantBoardingSmartFDC.cs" />
158+
<Compile Include="Source\Samples\MerchantBoarding\MerchantBoardingTSYS.cs" />
159+
<Compile Include="Source\Samples\MerchantBoarding\MerchantBoardingVPC.cs" />
148160
<Compile Include="Source\Samples\PayerAuthentication\AuthenticationWithNewAccount.cs" />
149161
<Compile Include="Source\Samples\PayerAuthentication\AuthenticationWithNORedirect.cs" />
150162
<Compile Include="Source\Samples\PayerAuthentication\EnrollWithCustomerIdAsPaymentInformation.cs" />
@@ -203,6 +215,9 @@
203215
<Compile Include="Source\Samples\Payments\Payments\AuthorizationWithPAEnrollAuthenticationNeeded.cs" />
204216
<Compile Include="Source\Samples\Payments\Payments\AuthorizationWithPayerAuthValidation.cs" />
205217
<Compile Include="Source\Samples\Payments\Payments\AuthorizationWithTMSTokenBypassingNetworkToken.cs" />
218+
<Compile Include="Source\Samples\Payments\Payments\CITInitiatingInstalmentSubscriptionUK.cs" />
219+
<Compile Include="Source\Samples\Payments\Payments\CITInitiatingRecurringSubscription.cs" />
220+
<Compile Include="Source\Samples\Payments\Payments\CITPlacingCredentialOnFile.cs" />
206221
<Compile Include="Source\Samples\Payments\Payments\DigitalPaymentGooglePay.cs" />
207222
<Compile Include="Source\Samples\Payments\Payments\DigitalPaymentsApplePay.cs" />
208223
<Compile Include="Source\Samples\Payments\Payments\EBTElectronicVoucherPurchaseFromSNAPAccountWithVisaPlatformConnect.cs" />
@@ -213,6 +228,11 @@
213228
<Compile Include="Source\Samples\Payments\Payments\IncrementalAuthorization.cs" />
214229
<Compile Include="Source\Samples\Payments\Payments\LevelIIData.cs" />
215230
<Compile Include="Source\Samples\Payments\Payments\LevelIIIData.cs" />
231+
<Compile Include="Source\Samples\Payments\Payments\MITIndustryPracticeDelayedCharge3RIVisa.cs" />
232+
<Compile Include="Source\Samples\Payments\Payments\MITIndustryPracticeResubmission.cs" />
233+
<Compile Include="Source\Samples\Payments\Payments\MITInstalment.cs" />
234+
<Compile Include="Source\Samples\Payments\Payments\MITRecurring.cs" />
235+
<Compile Include="Source\Samples\Payments\Payments\MITUnscheduledCredentialOnFile.cs" />
216236
<Compile Include="Source\Samples\Payments\Payments\PartialAuthorization.cs" />
217237
<Compile Include="Source\Samples\Payments\Payments\PaymentNetworkTokenization.cs" />
218238
<Compile Include="Source\Samples\Payments\Payments\PaymentWithFlexToken.cs" />

0 commit comments

Comments
 (0)