public StudentGroupService( IStudentGroupRepository studentGroupRepository, ICourseRepository courseRepository, IMapper mapper) { _studentGroupRepository = studentGroupRepository; _courseRepository = courseRepository; _mapper = mapper; }
public StudentGroupServices(IStudentGroupRepository studentGroup) { studentGroupRepository = studentGroup; }
public StudentGroupService(IStudentGroupRepository repository) : base(repository) { }