Ejemplo n.º 1
0
 public StudentController(IStudentService studentService, ISubjectService subjectService, IGroupService groupService, IEducationProcessService educationService)
 {
     this.studentService   = studentService;
     this.subjectService   = subjectService;
     this.groupService     = groupService;
     this.educationService = educationService;
 }
Ejemplo n.º 2
0
 public StudentService(IUnitOfWork uow, IEducationProcessService educationService)
 {
     Database = uow;
     this.educationService = educationService;
 }
Ejemplo n.º 3
0
 public SubjectController(ISubjectService subjectService, IEducationProcessService educationService)
 {
     this.subjectService   = subjectService;
     this.educationService = educationService;
 }