public EnrollmentsController(IEnrollmentService enrollmentServices,
                              IStudentRepositoy studentService, ICourseService courseService)
 {
     this.enrollmentServices = enrollmentServices;
     this.studentService     = studentService;
     this.courseService      = courseService;
 }
Esempio n. 2
0
 public StudentService(IStudentRepositoy studentRepository) : base(studentRepository)
 {
     this.studentRepository = studentRepository;
 }