Beispiel #1
0
 public TrainerController()
 {
     trainRepo = new TrainerBizRepo();
     context   = new OLDbContext();
 }
 public StudentCourseController()
 {
     scRepo  = new StudentCourseRepo();
     context = new OLDbContext();
 }
Beispiel #3
0
 public AccountController()
 {
     AppDbContext = new ApplicationDbContext();
     olContext    = new OLDbContext();
 }
 public StudentCourseRepo()
 {
     ctx = new OLDbContext();
 }
 public TrainerBizRepo()
 {
     ctx = new OLDbContext();
 }
Beispiel #6
0
 public CourseBizRepo()
 {
     ctx = new OLDbContext();
 }
Beispiel #7
0
 public ModuleRepo()
 {
     ctx = new OLDbContext();
 }
Beispiel #8
0
 public StudentController()
 {
     studentRepo = new StudentBizRepo();
     context     = new OLDbContext();
 }
Beispiel #9
0
 public ModuleController()
 {
     corRepo = new CourseBizRepo();
     modRepo = new ModuleRepo();
     context = new OLDbContext();
 }
Beispiel #10
0
 public StudentBizRepo()
 {
     ctx = new OLDbContext();
 }
Beispiel #11
0
 public CourseController()
 {
     sturepo = new StudentBizRepo();
     corRepo = new CourseBizRepo();
     context = new OLDbContext();
 }