예제 #1
0
        public static PaymentContext UseTenpay(this PaymentContext context, TenpayConfig configuration)
        {
            var payment = new Tenpayment(configuration);

            context.SetPayment(payment);
            return(context);
        }
예제 #2
0
        public static PaymentContext Tenpay(TenpayConfig configuration)
        {
            var context = new PaymentContext();
            var payment = new Tenpayment(configuration);

            context.SetPayment(payment);
            return(context);
        }