コード例 #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);
 }