Exemple #1
0
 public void Test_UpdateCourse6()
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var UpdateCourse6 = Reg.UpdateCourse6ToSchedule(1, 1, new TimeSpan(0, 0, 0), true);
     }
 }
 public void Run_UpdateCourse6(int SId, int CId, TimeSpan StartTime, bool On)
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var UpdateCourse6 = Reg.UpdateCourse6ToSchedule(SId, CId, StartTime, On);
     }
 }