public GetPSTransactionsSerialAction(IPaymentSourceRestClient restClient, int TillNumber, int SaleNumber, int PastDays)
     : base("GetPSTransactionsAsync")
 {
     _restClient = restClient;
     _TillNumber = TillNumber;
     _SaleNumber = SaleNumber;
     _pastdays   = PastDays;
 }
 public GetPSRefundInfoSerialAction(IPaymentSourceRestClient restClient, string TransactionID, int SaleNumber, int TillNumber)
     : base("GetPSRefundInfoAsync")
 {
     _restClient = restClient;
     _TransID    = TransactionID;
     _SaleNumber = SaleNumber;
     _TillNumber = TillNumber;
 }
Exemplo n.º 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;
 }
 public GetPSVoucherInfoSerializeAction(IPaymentSourceRestClient PaymentSourceRestClient, string ProdName)
     : base("GetPSVoucherInfoAsync")
 {
     _restClient = PaymentSourceRestClient;
     _prodName   = ProdName;
 }
 public PaymentSourceSerializeManager(IPaymentSourceRestClient paymentSourceRestClient)
 {
     _ipaymentSourceRestClient = paymentSourceRestClient;
 }
 public GetPSProfileSerializeAction(IPaymentSourceRestClient PaymentSourceRestClient)
     : base("GetPSProfileAsync")
 {
     _restClient = PaymentSourceRestClient;
 }
Exemplo n.º 7
0
 public GetPSTransactionIDSerializeAction(IPaymentSourceRestClient PaymentSourceRestClient)
     : base("GetPSTransactionIDAsync")
 {
     _restClient = PaymentSourceRestClient;
 }
 public GetPSLogosSerializeAction(IPaymentSourceRestClient _IPaymentSourceRestClient)
     : base("GetPSLogosAsync")
 {
     _restClient = _IPaymentSourceRestClient;
 }
 public GetDownloadedFilesSerializeAction(IPaymentSourceRestClient PaymentSourceRestClient)
     : base("GetDownloadedFilesAsync")
 {
     _restClient = PaymentSourceRestClient;
 }