コード例 #1
0
 public static bool AddCustomerPayment(CustomerPayment payment)
 {
     return(CustomerDb.AddCustomerPayment(payment.Id, payment.CustomerId, payment.Amount,
                                          payment.DateTime,
                                          payment.UserId));
 }