public STSController(ISTSService stsService, IStudentService studentService, ITeacherSubjectService teacherSubjectService, IEmailService emailService, IUnitOfWork db)
 {
     this.stsService            = stsService;
     this.studentService        = studentService;
     this.teacherSubjectService = teacherSubjectService;
     this.emailService          = emailService;
     this.db = db;
 }
Beispiel #2
0
 public TeacherSubjectController(ITeacherSubjectService teacherSubjectService, ITeacherService teacherService, ISubjectService subjectService)
 {
     this.teacherSubjectService = teacherSubjectService;
     this.teacherService        = teacherService;
     this.subjectService        = subjectService;
 }