Esempio n. 1
0
 public bool ExamUpdateTypeByID(string type, int ID)
 {
     DSExcludeTableAdapters.ExaminationCourseTableAdapter helper = new DSExcludeTableAdapters.ExaminationCourseTableAdapter();
     if (type == "")
     {
         helper.UpdateTypeNULLByID(ID);
     }
     else
     {
         helper.UpdateTypeByID(type, ID);
     }
     return(true);
 }
Esempio n. 2
0
 public DataTable SelectCourseWithTypeIsNull()
 {
     DSExcludeTableAdapters.ExaminationCourseTableAdapter helper = new DSExcludeTableAdapters.ExaminationCourseTableAdapter();
     return(helper.SelectCourseWithTypeIsNull());
 }
Esempio n. 3
0
 public DataTable SelectAllExamCourse()
 {
     DSExcludeTableAdapters.ExaminationCourseTableAdapter helper = new DSExcludeTableAdapters.ExaminationCourseTableAdapter();
     return(helper.SelectAllExamCourse());
 }
Esempio n. 4
0
 public DataTable SelectByID(int ID)
 {
     DSExcludeTableAdapters.ExaminationCourseTableAdapter helper = new DSExcludeTableAdapters.ExaminationCourseTableAdapter();
     return(helper.SelectByID(ID));
 }
Esempio n. 5
0
 public string SelectTimeByID(int ID)
 {
     DSExcludeTableAdapters.ExaminationCourseTableAdapter helper = new DSExcludeTableAdapters.ExaminationCourseTableAdapter();
     return(helper.SelectTimeByID(ID).ToString());
 }
Esempio n. 6
0
 public int UpdateByExcludeCourse()
 {
     DSExcludeTableAdapters.ExaminationCourseTableAdapter helper = new DSExcludeTableAdapters.ExaminationCourseTableAdapter();
     return(helper.UpdateByExcludeCourse());
 }