Starts in:
0 DAY
11 HRS
56 MIN
12 SEC
Starts in:
0 D
11 H
56 M
12 S

Activities of "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

Showing 1 to 1 of 1 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 20, 2024, 13:06