public StudentService(IUnitOfWork unitOfWork, ILearningClassStudentService learningClassStudentService,
                       ISemesterService semesterService) : base(unitOfWork)
 {
     _learningClassStudentService = learningClassStudentService;
     _semesterService             = semesterService;
 }
예제 #2
0
 public InternshipController(ILearningClassStudentService learningClassStudentService, IStudentService studentService, ILearningClassService learningClassService)
 {
     _learningClassStudentService = learningClassStudentService;
     _studentService       = studentService;
     _learningClassService = learningClassService;
 }
예제 #3
0
 public LearningClassService(IUnitOfWork unitOfWork, ILearningClassStudentService learningClassStudentService) :
     base(unitOfWork)
 {
     _learningClassStudentService = learningClassStudentService;
 }