Ejemplo n.º 1
0
 public MerchantPayController(MerchantPayProductService mpService, IExcelClient excelClient, PayChannelService payChannelService, PayProductService payProductService)
 {
     this._mpService         = mpService;
     this.excelClient        = excelClient;
     this._payChannelService = payChannelService;
     this._payProductService = payProductService;
 }
Ejemplo n.º 2
0
 public Processor10001(MerchantService merchantService,
                       PayProductService payProductService,
                       MerchantPayProductService merchantPayProductService,
                       PayChannelService payChannelService,
                       PayOrderService payOrderService
                       )
 {
     this._merchantService           = merchantService;
     this._payProductService         = payProductService;
     this._merchantPayProductService = merchantPayProductService;
     this._payChannelService         = payChannelService;
     this._payOrderService           = payOrderService;
 }
Ejemplo n.º 3
0
 public Processor_JuBaoPay(MerchantService merchantService,
                           PayProductService payProductService,
                           MerchantPayProductService merchantPayProductService,
                           PayChannelService payChannelService,
                           PayOrderService payOrderService
                           )
 {
     this._merchantService           = merchantService;
     this._payProductService         = payProductService;
     this._merchantPayProductService = merchantPayProductService;
     this._payChannelService         = payChannelService;
     this._payOrderService           = payOrderService;
     this.IsPostForm    = true;
     this.PayUrl        = "http://gateway.jbpay.net/api/gateway";
     this.RequestMethod = "POST";
 }