Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. Privatecustomer customer0 = new Privatecustomer("Max", "Mustermann", "017632447658", "musterman@max.de", "08.03.1993", new Address("Maxstraße", "22", "12139", "Berlin"), "1");
  2. Account account0 = new Account("DE21 0010 0100 8234 6425 50", 100.00, "1");
  3. Transaction trans00 = new Transaction("DE21 0010 0100 8234 6425 50", trans.getDateTime(), "Payout", "Aldi", 20.50);
  4. Transaction trans01 = new Transaction("DE21 0010 0100 8234 6425 50", trans.getDateTime(), "Payout", "Edeka", 45.99);
  5. Transaction trans02 = new Transaction("DE21 0010 0100 8234 6425 50", trans.getDateTime(), "Payout", "Media Markt", 50.00);
  6. Transaction trans03 = new Transaction("DE21 0010 0100 8234 6425 50", trans.getDateTime(), "Payout", "Saturn", 67.86);
  7. Transaction trans04 = new Transaction("DE21 0010 0100 8234 6425 50", trans.getDateTime(), "Deposit", "Amazon", 100.20);
  8.  
  9. Customer customer1 = new Privatecustomer("Ragnar", "Lothbrok", "017634456657", "Lothbrok@ragnar.de", "15.07.1979", new Address("Ragnarstraße", "22", "12159", "Berlin"), "2");
  10. Account account1 = new Account("DE21 0010 0100 8234 6426 50", 200.00, "2");
  11. Transakcion trans10 = new Transaktion("DE21 0010 0100 8234 6426 50", trans.getDateTime(), "Payout", "Aldi", 30.00);
  12. Transaction trans11 = new Transaction("DE21 0010 0100 8234 6426 50", trans.getDateTime(), "Payout", "Edeka", 45.55);
  13. Transaction trans12 = new Transaction("DE21 0010 0100 8234 6426 50", trans.getDateTime(), "Payout", "Media Markt", 67.89);
  14. Transaction trans13 = new Transaction("DE21 0010 0100 8234 6426 50", trans.getDateTime(), "Payout", "Saturn", 99.99);
  15. Transaction trans14 = new Transaction("DE21 0010 0100 8234 6426 50", trans.getDateTime(), "Deposit", "Amazon", 66.60);
  16.  
  17. Customer customer2 = new Privatecustomer("Peter", "Lustig", "017632556698", "lustig@peter.de", "18.04.1985", new Address("Peterstraße", "22", "12129", "Hamburg"), "3");
  18. Account account2 = new Account("DE21 0010 0100 8234 6426 00", 250.00, "3");
  19. account.addTransaction(new Transaction("DE21 0010 0100 8234 6426 00", trans.getDateTime(), "Payout", "Aldi", 66.96));
  20. account.addTransaction(new Transaction("DE21 0010 0100 8234 6426 00", trans.getDateTime(), "Payout", "Edeka", 120.55));
  21. account.addTransaction(new Transaction("DE21 0010 0100 8234 6426 00", trans.getDateTime(), "Payout", "Media Markt", 60.00));
  22. account.addTransaction(new Transaction("DE21 0010 0100 8234 6426 00", trans.getDateTime(), "Payout", "Saturn", 59.99));
  23. account.addTransaction(new Transaction("DE21 0010 0100 8234 6426 00", trans.getDateTime(), "Deposit", "Amazon", 568.77));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement