コード例 #1
0
ファイル: STD_SubjectStudentManager.cs プロジェクト: anam/mal
 public static STD_SubjectStudent GetSTD_SubjectBySubjectID(int SubjectID)
 {
     STD_SubjectStudent sTD_SubjectStudent = new STD_SubjectStudent();
     SqlSTD_SubjectStudentProvider sqlSTD_SubjectStudentProvider = new SqlSTD_SubjectStudentProvider();
     sTD_SubjectStudent = sqlSTD_SubjectStudentProvider.GetSTD_SubjectStudentBySubjectID(SubjectID);
     return sTD_SubjectStudent;
 }