コード例 #1
0
 public Payment(CieloPaymentType type, decimal amount, int installments)
 {
     Amount       = amount;
     Installments = installments;
 }
コード例 #2
0
 public Payment(CieloPaymentType type, decimal amount)
 {
     Amount       = amount;
     Installments = 1;
 }