Ejemplo n.º 1
0
 public void Test_DeleteCourse()
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var RemoveCourse = Reg.DeleteCourse(5);
     }
 }
 public void Run_DeleteCourse(int Id)
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var RemoveCourse = Reg.DeleteCourse(Id);
     }
 }