public LessonStudentService(ILessonStudentRepository lessonStudentRepository, IUnitOfWork unitOfWork, ILessonRepository lessonRepository, IStudentRepository studentRepository) { _lessonStudentRepository = lessonStudentRepository; _unitOfWork = unitOfWork; _lessonRepository = lessonRepository; _studentRepository = studentRepository; }
public TutorService(ITutorRepository object1, IFacultyRepository facultyRepository, IAccountRepository accountRepository, IUnitOfWork object2, ILessonRepository lessonRepository, ILessonStudentRepository lessonStudentRepository) { this._tutorRepository = object1; this._unitOfWork = object2; this._facultyRepository = facultyRepository; this._accountRepository = accountRepository; _lessonRepository = lessonRepository; _lessonStudentRepository = lessonStudentRepository; }