コード例 #1
0
 public bool deleteSelectedCourse(int sid, int cid)
 {
     CourseService courseService = new CourseService();
     if (courseService.deleteSelectedCourse(sid, cid, global_semester))
     {
         return true;
     }
     else
     {
         return false;
     }
 }