Example #1
0
 public DataTable GetAll()
 {
     try
     {
         RegistrationDAL registrationDAL = new RegistrationDAL();
         return(registrationDAL.GetAll());
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #2
0
 public static ObservableCollection <Registration> GetAll()
 {
     return(RegistrationDAL.GetAll());
 }