public IList <Course> ListCourseByCourseName(string courseName)
 {
     try
     {
         IList <Course> courseList = _iCourseDao.ListCourseByCourseName(courseName);
         if (courseList == null || courseList.Count == 0)
         {
             throw new CourseNotFoundException();
         }
         return(courseList);
     }catch
     {
         throw;
     }
 }