コード例 #1
0
    public BaseComGatePayment CreateBasePayment(string orderId, string label, decimal price)
    {
        //model.Price
        var cents = (int)(price * 100);

        //BasicPaymentViewModel model = new BasicPaymentViewModel { Price = 10, Name = "Name", Email = CmConsts.Email, Label = "Item1" };
        //model.ReferenceId = orderId;//HttpClientHelper.GetResponseText(AppsHandlersUri.OrderId(Consts.localhost), HttpMethod.Get, new HttpRequestData { });


        BaseComGatePayment payment = PaymentFactory.GetBasePayment(cents, orderId, label, PaymentMethods.ALL);


        return(payment);
    }