示例#1
0
 public AppRepository(CsEvaluatorContext context)
 {
     HomeworkDescriptionRepository = new HomeworkDescriptionRepository(context);
     HomeworkRepository            = new HomeworkRepository(context);
     SubjectsRepository            = new SubjectsRepository(context);
     StudentRepository             = new StudentRepository(context);
 }
示例#2
0
 public HomeworkDescriptionRepository(CsEvaluatorContext context)
 {
     Context = context;
 }
示例#3
0
 public SubjectsRepository(CsEvaluatorContext context)
 {
     Context = context;
 }
示例#4
0
 public HomeworkRepository(CsEvaluatorContext context)
 {
     Context = context;
 }
 public StudentRepository(CsEvaluatorContext context)
 {
     Context = context;
 }