Esempio n. 1
0
 public void Test_UpdateCourse5()
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var UpdateCourse5 = Reg.UpdateCourse5ToSchedule(1, 1, new TimeSpan(0, 0, 0), true);
     }
 }
 public void Run_UpdateCourse5(int SId, int CId, TimeSpan StartTime, bool On)
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var UpdateCourse5 = Reg.UpdateCourse5ToSchedule(SId, CId, StartTime, On);
     }
 }