Пример #1
0
 public void Test_UpdateCourse7()
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var UpdateCourse7 = Reg.UpdateCourse7ToSchedule(1, 1, new TimeSpan(0, 0, 0), true);
     }
 }
 public void Run_UpdateCourse7(int SId, int CId, TimeSpan StartTime, bool On)
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var UpdateCourse7 = Reg.UpdateCourse7ToSchedule(SId, CId, StartTime, On);
     }
 }