コード例 #1
0
 public GetPSTransactionsSerialAction(IPaymentSourceRestClient restClient, int TillNumber, int SaleNumber, int PastDays)
     : base("GetPSTransactionsAsync")
 {
     _restClient = restClient;
     _TillNumber = TillNumber;
     _SaleNumber = SaleNumber;
     _pastdays   = PastDays;
 }
コード例 #2
0
 public GetPSRefundInfoSerialAction(IPaymentSourceRestClient restClient, string TransactionID, int SaleNumber, int TillNumber)
     : base("GetPSRefundInfoAsync")
 {
     _restClient = restClient;
     _TransID    = TransactionID;
     _SaleNumber = SaleNumber;
     _TillNumber = TillNumber;
 }
コード例 #3
0
 public SavePSTransactionIDSerializeAction(IPaymentSourceRestClient _IPaymentSourceRestClient,
                                           int TILL_NUM, int SALE_NO, int LINE_NUM, string TransID)
     : base("SavePSTransactionIDAsync")
 {
     _restClient = _IPaymentSourceRestClient;
     _TILL_NUM   = TILL_NUM;
     _SALE_NO    = SALE_NO;
     _LINE_NUM   = LINE_NUM;
     _TransID    = TransID;
 }
コード例 #4
0
 public GetPSVoucherInfoSerializeAction(IPaymentSourceRestClient PaymentSourceRestClient, string ProdName)
     : base("GetPSVoucherInfoAsync")
 {
     _restClient = PaymentSourceRestClient;
     _prodName   = ProdName;
 }
コード例 #5
0
 public PaymentSourceSerializeManager(IPaymentSourceRestClient paymentSourceRestClient)
 {
     _ipaymentSourceRestClient = paymentSourceRestClient;
 }
コード例 #6
0
 public GetPSProfileSerializeAction(IPaymentSourceRestClient PaymentSourceRestClient)
     : base("GetPSProfileAsync")
 {
     _restClient = PaymentSourceRestClient;
 }
コード例 #7
0
 public GetPSTransactionIDSerializeAction(IPaymentSourceRestClient PaymentSourceRestClient)
     : base("GetPSTransactionIDAsync")
 {
     _restClient = PaymentSourceRestClient;
 }
コード例 #8
0
 public GetPSLogosSerializeAction(IPaymentSourceRestClient _IPaymentSourceRestClient)
     : base("GetPSLogosAsync")
 {
     _restClient = _IPaymentSourceRestClient;
 }
コード例 #9
0
 public GetDownloadedFilesSerializeAction(IPaymentSourceRestClient PaymentSourceRestClient)
     : base("GetDownloadedFilesAsync")
 {
     _restClient = PaymentSourceRestClient;
 }