Example #1
0
 public TeachesService(IUnitOfWork db, IStudentDepartmentsService studentDepartmentsService, ITeachersService teachersService,
                       ISubjectsService subjectsService, IStudentsService studentsService)
 {
     this.db = db;
     this.studentDepartmentsService = studentDepartmentsService;
     this.subjectsService           = subjectsService;
     this.teachersService           = teachersService;
     this.studentsService           = studentsService;
 }
 public StudentDepartmentsController(IStudentDepartmentsService studentDepartmentsService)
 {
     this.studentDepartmentsService = studentDepartmentsService;
 }