コード例 #1
0
ファイル: Exclude.cs プロジェクト: LuckPumpkin/paperSystem
 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);
 }
コード例 #2
0
ファイル: Exclude.cs プロジェクト: LuckPumpkin/paperSystem
 public DataTable SelectCourseWithTypeIsNull()
 {
     DSExcludeTableAdapters.ExaminationCourseTableAdapter helper = new DSExcludeTableAdapters.ExaminationCourseTableAdapter();
     return(helper.SelectCourseWithTypeIsNull());
 }
コード例 #3
0
ファイル: Exclude.cs プロジェクト: LuckPumpkin/paperSystem
 public DataTable SelectAllExamCourse()
 {
     DSExcludeTableAdapters.ExaminationCourseTableAdapter helper = new DSExcludeTableAdapters.ExaminationCourseTableAdapter();
     return(helper.SelectAllExamCourse());
 }
コード例 #4
0
ファイル: Exclude.cs プロジェクト: LuckPumpkin/paperSystem
 public DataTable SelectByID(int ID)
 {
     DSExcludeTableAdapters.ExaminationCourseTableAdapter helper = new DSExcludeTableAdapters.ExaminationCourseTableAdapter();
     return(helper.SelectByID(ID));
 }
コード例 #5
0
ファイル: Exclude.cs プロジェクト: LuckPumpkin/paperSystem
 public string SelectTimeByID(int ID)
 {
     DSExcludeTableAdapters.ExaminationCourseTableAdapter helper = new DSExcludeTableAdapters.ExaminationCourseTableAdapter();
     return(helper.SelectTimeByID(ID).ToString());
 }
コード例 #6
0
ファイル: Exclude.cs プロジェクト: LuckPumpkin/paperSystem
 public int UpdateByExcludeCourse()
 {
     DSExcludeTableAdapters.ExaminationCourseTableAdapter helper = new DSExcludeTableAdapters.ExaminationCourseTableAdapter();
     return(helper.UpdateByExcludeCourse());
 }