コード例 #1
0
 public void VerifyPayment(Models.DTO.Payment.PaymentModel model, Action success, Action <string> error)
 {
     VerifyPaymentServer(model,
                         () =>
     {
         success?.Invoke();
     }, error);
 }
コード例 #2
0
 private static void VerifyPaymentServer(Models.DTO.Payment.PaymentModel model, Action success, Action <string> error)
 {
     GetService.VerifyPayment(model, success, error);
 }