public IActionResult getLearningPlan(int idStudent)
 {
     try
     {
         return(new ObjectResult(_learn.GetLearningPlan(idStudent)));
     }
     catch
     {
         return(BadRequest());
     }
 }