Exemple #1
0
 public CNYWithdrawSetFee(CNYWithdraw withdraw, decimal fee)
 {
     this.CNYWithdraw = withdraw;
     this.Fee = fee;
 }
Exemple #2
0
 public CNYWithdrawCreated(int withdrawUserID, int accountID, decimal amount, int userBankAccountID, CNYWithdraw withdrawEntity)
 {
     this.WithdrawUserID = withdrawUserID;
     this.AccountID = accountID;
     this.Amount = amount;
     this.UserBankAccountID = userBankAccountID;
     this.CNYWithdrawEntity = withdrawEntity;
 }