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