示例#1
0
 public static DataSet GetSTD_ClassSubjectByClassSubjectID(int ClassSubjectID,bool isDataset)
 {
     DataSet sTD_Exam = new DataSet();
     SqlSTD_ExamProvider sqlSTD_ExamProvider = new SqlSTD_ExamProvider();
     sTD_Exam = sqlSTD_ExamProvider.GetSTD_ExamByClassSubjectID(ClassSubjectID,true);
     return sTD_Exam;
 }
示例#2
0
 public static STD_Exam GetSTD_ClassSubjectByClassSubjectID(int ClassSubjectID)
 {
     STD_Exam sTD_Exam = new STD_Exam();
     SqlSTD_ExamProvider sqlSTD_ExamProvider = new SqlSTD_ExamProvider();
     sTD_Exam = sqlSTD_ExamProvider.GetSTD_ExamByClassSubjectID(ClassSubjectID);
     return sTD_Exam;
 }