public GradesController(IStudentGradesService studentGradesService, IMapper mapper)
 {
     _studentGradesService = studentGradesService;
     _mapper = mapper;
 }
 public StudentGradesController(IStudentGradesService studentGradesService)
 {
     _studentGradesService = studentGradesService;
 }