Example #1
0
 public void Test_GetAllActiveInactiveStudents()
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var GetStudents = Reg.GetAllActiveInactiveStudents(true);
     }
 }
 public void Run_GetAllActiveInactiveStudents(bool On)
 {
     using (var Reg = new RegistrationDBEntities())
     {
         var GetStudents = Reg.GetAllActiveInactiveStudents(On);
     }
 }