public TeacherCoursesService(TeamworkDbContext db)
 {
     this.db = db;
 }
Exemple #2
0
 public StudentService(TeamworkDbContext db)
 {
     this.db = db;
 }
 public TeacherProjectsService(TeamworkDbContext db)
 {
     this.db = db;
 }
 public AdminUserService(TeamworkDbContext db)
 {
     this.db = db;
 }
 public CoursesController(TeamworkDbContext context)
 {
     _context = context;
 }
 public TeacherStudentsService(TeamworkDbContext db)
 {
     this.db = db;
 }