public StudentController(IStudentService studentService, IParentService parentService, IClassService classService, ISTSService stsService)
 {
     this.studentService = studentService;
     this.parentService  = parentService;
     this.classService   = classService;
     this.stsService     = stsService;
 }
 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;
 }