Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. ELRates elRate = new ELRates();
  2. elRate.setRate(new BigDecimal("0.6"));
  3. elRate.setFromDate(conv.convertStringToDate("09/05/2005"));
  4.  
  5. ELRates elRate2 = new ELRates();
  6. elRate2.setRate(new BigDecimal("0.7"));
  7. elRate2.setFromDate(conv.convertStringToDate("10/06/2006"));
  8.  
  9. List<ELRvcReportItemProcessorRateAdapter> rates = new ArrayList<ELRvcReportItemProcessorRateAdapter>();
  10. rates.add(elRate);
  11. rates.add(elRate2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement