예제 #1
0
 public StudentController()
 {
     repo          = new CUDEntityRepo <Student>(context);
     getEntityRepo = new GetStudentRepo(context);
 }
예제 #2
0
 public EnrollmentController()
 {
     this.getEnrollmentRepo = new GetEnrollmentRepo(context);
     this.getitemEnrollRepo = new GetItemEnrollmentRepo(context);
     this.repo = new CUDEntityRepo <Enrollment>(context, this.getitemEnrollRepo);
 }