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