Esempio n. 1
0
 public void Test_UpdateCourse4()
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var UpdateCourse4 = Reg.UpdateCourse4ToSchedule(1, 1, new TimeSpan(0, 0, 0), true);
     }
 }
 public void Run_UpdateCourse4(int SId, int CId, TimeSpan StartTime, bool On)
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var UpdateCourse4 = Reg.UpdateCourse4ToSchedule(SId, CId, StartTime, On);
     }
 }