コード例 #1
0
 public void Test_215_swipe_authorization()
 {
     try {
         cashCard.Authorize(10m)
         .WithCurrency("USD")
         .Execute();
     }
     catch (UnsupportedTransactionException ex) {
         System.Diagnostics.Debug.WriteLine(ex.Message);
     }
 }
コード例 #2
0
 public void Test_227_swipe_foodStamp_authorization()
 {
     foodCard.Authorize(10m)
     .WithCurrency("USD")
     .Execute();
 }