Exemplo n.º 1
0
 public StudentsRepository(RepositorySorter sorter, RepositioryFilter filter)
 {
     this.filter  = filter;
     this.sorter  = sorter;
     this.student = new Dictionary <string, Student>();
     this.courses = new Dictionary <string, Course>();
 }
Exemplo n.º 2
0
 public StudentsRepository(RepositorySorter sorter, RepositioryFilter filter)
 {
     this.filter           = filter;
     this.sorter           = sorter;
     this.studentsByCourse = new Dictionary <string, Dictionary <string, List <int> > >();
 }
Exemplo n.º 3
0
 public StudentsRepository(RepositorySorter sorter,RepositioryFilter filter)
 {
     this.filter = filter;
     this.sorter = sorter;
     this.studentsByCourse = new Dictionary<string, Dictionary<string, List<int>>>();
 }