Esempio n. 1
0
 public void Test_UpdateCourse2()
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var UpdateCourse2 = Reg.UpdateCourse2ToSchedule(1, 1, new TimeSpan(0, 0, 0), true);
     }
 }
 public void Run_UpdateCourse2(int SId, int CId, TimeSpan StartTime, bool On)
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var UpdateCourse2 = Reg.UpdateCourse2ToSchedule(SId, CId, StartTime, On);
     }
 }