public StudentController(IStudentService studentService, ISubjectService subjectService, IGroupService groupService, IEducationProcessService educationService)
 {
     this.studentService   = studentService;
     this.subjectService   = subjectService;
     this.groupService     = groupService;
     this.educationService = educationService;
 }
 public StudentService(IUnitOfWork uow, IEducationProcessService educationService)
 {
     Database = uow;
     this.educationService = educationService;
 }
 public SubjectController(ISubjectService subjectService, IEducationProcessService educationService)
 {
     this.subjectService   = subjectService;
     this.educationService = educationService;
 }