コード例 #1
0
 public static bool UpdateNewSchedule(tk_Schedule Schedule, string ID, ref string a_strErr)
 {
     if (ProjectPro.UpdateSchedule(Schedule, ID, ref a_strErr) >= 2)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
コード例 #2
0
 public static bool InsertNewSchedule(tk_Schedule Schedule, ref string a_strErr)
 {
     if (ProjectPro.InsertSchedule(Schedule, ref a_strErr) >= 1)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }