Exemple #1
0
        public static Payment Cancel(string id, string apiKey)
        {
            var payment = new Payment {
                Id = id, ApiKey = apiKey
            };

            payment.Cancel();
            return(payment);
        }
Exemple #2
0
 public static Payment Cancel(string id, string apiKey)
 {
     var payment = new Payment { Id = id, ApiKey = apiKey };
     payment.Cancel();
     return payment;
 }