public IActionResult GetAllCourseArray()
 {
     try
     {
         return(Ok(courseBll.GetAllCourseArray()));
     }
     catch (Exception ex)
     {
         return(NotFound(ex.Message));
     }
 }