Exemple #1
0
 public StudentsController(IMockStudentsRepository mockStudentsRepo)
 {
     this.db = mockStudentsRepo;
 }
Exemple #2
0
 public StudentsController()
 {
     this.db = new EnityFrameworkStudentRepository();
 }