hi
Please share your code, eg
BtcPaymentGateway
,IPurchaseParameterListGenerator
etc
BtcPaymentGateway:
using System;
using System.Collections.Generic;
using System.Text;
using Volo.Abp.Autofac;
using Volo.Abp.Modularity;
// TestSolution.Domain.Shared\BtcPayments\BtcPaymentConsts.cs
namespace TestSolution.BtcPayments
{
public static class BtcPaymentConsts
{
/// <summary>Value: "BtcPay"</summary>
public const string GatewayName = "BtcPay";
/// <summary>Value: "/Payment/BtcPay/PrePayment"</summary>
public const string PrePaymentUrl = "/Payment/BtcPay/PrePayment";
/// <summary>Value: "/Payment/BtcPay/PostPayment"</summary>
public const string PostPaymentUrl = "/Payment/BtcPay/PostPayment";
public static class ParameterNames
{
public const string PaymentRequestId = "PaymentRequestId";
public const string Url = "url";
public const string PayRefNo = "payrefno";
public const string Ctrl = "ctrl";
}
}
}
About IPurchaseParameterListGenerator I assume that it is implemented in the private part of the abp.payments module but the source code of the module is not available in the framework license