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