Exemple #1
0
 public StudentController(ICourseDatabase courseDB, IStudentDatabase studentDB, ICourseStudentDatabase csDB, IReviewDatabase reviewDB, UserManager <CourseHelperUser> userManager)
 {
     this.courseDB    = courseDB;
     this.studentDB   = studentDB;
     this.csDB        = csDB;
     this.reviewDB    = reviewDB;
     this.userManager = userManager;
 }
 public CourseController(ICourseDatabase courseDB, IStudentDatabase studentDB, ICourseStudentDatabase csDB)
 {
     this.courseDB  = courseDB;
     this.studentDB = studentDB;
     this.csDB      = csDB;
 }