public async Task <ActionResult> AddStudentToSection(int userId, int sectionId)
 {
     return(Ok(await _sectionService.AddStudentToSection(userId, sectionId)));
 }