Example #1
0
 public AccountFeesEntity(final AccountBO account, final FeeBO fee, final Double feeAmount) {
   accountFeeId = null;
   this.account = account;
   this.fees = fee;
   this.feeAmount = feeAmount;
   this.accountFeeAmount = new Money(account.getCurrency(), String.valueOf(feeAmount));
 }
Example #2
0
 public AccountFeesEntity(
     final AccountBO account,
     final FeeBO fees,
     final Double feeAmount,
     final Short feeStatus,
     final Date statusChangeDate,
     final Date lastAppliedDate) {
   accountFeeId = null;
   this.account = account;
   this.fees = fees;
   this.accountFeeAmount = new Money(account.getCurrency(), String.valueOf(feeAmount));
   this.feeAmount = feeAmount;
   this.feeStatus = feeStatus;
   this.statusChangeDate = statusChangeDate;
   this.lastAppliedDate = lastAppliedDate;
 }