#984 for unitofwork, tolerantreader, twin (#1044)

* #984 for unitofwork, tolerantreader, twin

* #984 for unitofwork, tolerantreader, twin

* #987 for visitor, value-object, unitofwork, typeobjectpattern, tolerantreader, twin, tranpoline
This commit is contained in:
Anurag870
2019-10-26 21:28:56 +05:30
committed by Ilkka Seppälä
parent c7fee7bb07
commit fadad43f8b
4 changed files with 32 additions and 28 deletions

View File

@ -39,7 +39,7 @@ public class App {
var shyam = new Student(2, "Shyam", "Z bridge, Pune");
var gopi = new Student(3, "Gopi", "Street 10, Mumbai");
HashMap<String, List<Student>> context = new HashMap<>();
var context = new HashMap<String, List<Student>>();
var studentDatabase = new StudentDatabase();
var studentRepository = new StudentRepository(context, studentDatabase);