Example #1
0
 public void Test_GetAllActiveInactiveProfessors()
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var GetProfessors = Reg.GetAllActiveInactiveProfessors(true);
     }
 }
 public void Run_GetAllActiveInactiveProfessors(bool On)
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var GetProfessors = Reg.GetAllActiveInactiveProfessors(On);
     }
 }