public StudentScheduleController(IGroupScheduleService groupScheduleService)
 {
     _groupScheduleService = groupScheduleService;
 }
 public GroupScheduleController(IGroupScheduleService groupScheduleService, IGroupSemestersService groupSemestersService, IMapper mapper)
 {
     _groupScheduleService  = groupScheduleService;
     _groupSemestersService = groupSemestersService;
     _mapper = mapper;
 }