コード例 #1
0
 private bool IsValidCourseName(string courseName)
 {
     try
     {
         CourseGetway courseGetway = new CourseGetway();
         return(courseGetway.IsValidCourseName(courseName));
     }
     catch (Exception)
     {
         throw;
     }
 }