Esempio n. 1
0
 public void Test_UpdateProfessor()
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var UpdateProfessor = Reg.UpdateProfessor(1, "Test", "Test", "Test", 0, true);
     }
 }
 public void Run_UpdateProfessor(int Id, string Dept, string Name, string LName, int Gen, bool On)
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var UpdateProfessor = Reg.UpdateProfessor(Id, Dept, Name, LName, Gen, On);
     }
 }