public IActionResult AddStudent(string number, int id)
 {
     _lessonService.AddStudentForLesson(number, id);
     return(Ok());
 }