Пример #1
0
 public GradesRepository(ISchoolMemoryContext context)
 {
     Context = context.Grades;
 }
Пример #2
0
 public LessonClassesRepository(ISchoolMemoryContext context)
 {
     Context = context.Lessons;
 }
Пример #3
0
 public TeachersRepository(ISchoolMemoryContext context)
 {
     Context = context.Teachers;
 }
Пример #4
0
 public StudentsRepository(ISchoolMemoryContext context)
 {
     Context = context.Students;
 }