public DbDataReader DataReader(string SQL, string[] ParameterName, List <object> ParameterValue)
 {
     try
     {
         LookupsDal lookupDal = new LookupsDal();
         return(lookupDal.DataReader(SQL, ParameterName, ParameterValue));
     }
     catch (Exception)
     {
         return(null);
     }
 }
 public DbDataReader DataReader(string SQL)
 {
     try
     {
         LookupsDal lookupDal = new LookupsDal();
         return(lookupDal.DataReader(SQL));
     }
     catch (Exception)
     {
         return(null);
     }
 }