コード例 #1
0
 public bool DeleteCourseTeacher(int id, int cid, int tid)
 {
     try
     {
         CourseGetway courseGetway = new CourseGetway();
         return(courseGetway.DeleteCourseTeacher(id, cid, tid));
     }
     catch (Exception)
     {
         throw;
     }
 }