أنشطة "aroyal81"

إجابة

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

عرض 1 الي 1 من 1 إدخالات
Made with ❤️ on ABP v8.2.0-preview Updated on مارس 25, 2024, 15:11