public IActionResult GetStudentNoChooseCourseArray(string Id, int index, int size)
 {
     try
     {
         return(Ok(courseBll.GetStudentNoChooseCourseArray(Id, index, size)));
     }
     catch (Exception ex)
     {
         return(NotFound(ex.Message));
     }
 }