コード例 #1
0
ファイル: StudentManager.cs プロジェクト: JeshadKhan/SIM
 public Student GetAllStudentEnrollCourseById(int id, int sid, int cid)
 {
     try
     {
         StudentGetway studentGetway = new StudentGetway();
         return(studentGetway.GetAllStudentEnrollCourseById(id, sid, cid));
     }
     catch (Exception)
     {
         throw;
     }
 }