Example #1
0
 public StudentRepository(StudentContext _context)
 {
     Context = _context;
 }
Example #2
0
 public StudentRepository()
 {
     Context = new StudentContext();
 }
Example #3
0
 public StudentRepository(StudentContext studentContext)
 {
     Context = studentContext;
 }
Example #4
0
 public StudentRepo(StudentContext _context)
 {
     Context = _context;
 }
Example #5
0
 public StudentRepo()
 {
     Context = new StudentContext();
 }
Example #6
0
 public StudentRepository(StudentContext context)
 {
     this.context = context;
 }