public virtual RejectedStockNewCollection GetRejectedStockNewList(RejectedStockNewColumns orderBy, string orderDirection)
 {            
     int totalRecords = 0;
     return GetRejectedStockNewList(orderBy, orderDirection, 0, 0, out totalRecords);
 }
 public static RejectedStockNewCollection GetRejectedStockNewList(RejectedStockNewColumns orderBy, string orderDirection)
 {            
     try
     {
         RejectedStockNewDAO rejectedStockNewDAO = new RejectedStockNewDAO();
         return rejectedStockNewDAO.GetRejectedStockNewList(orderBy, orderDirection);
     }
     catch (ApplicationException)
     {
         throw;
     }
     catch (Exception ex)
     {
         // log this exception
         log4net.Util.LogLog.Error(ex.Message, ex);
         // wrap it and rethrow
         throw new ApplicationException(SR.BusinessGetRejectedStockNewListException, ex);
     }
 }        
 public virtual RejectedStockNewCollection GetRejectedStockNewList(RejectedStockNewColumns orderBy, string orderDirection, int page, int pageSize, out int totalRecords)
 {            
     try
     {
         Database database = DatabaseFactory.CreateDatabase();
         DbCommand dbCommand = database.GetStoredProcCommand("spRejectedStockNewsGetList");
         
         database.AddInParameter(dbCommand, "@OrderBy", DbType.AnsiString, orderBy.ToString());
         database.AddInParameter(dbCommand, "@OrderDirection", DbType.AnsiString, orderDirection.ToString());
         database.AddInParameter(dbCommand, "@Page", DbType.Int32, page);
         database.AddInParameter(dbCommand, "@PageSize", DbType.Int32, pageSize);
         database.AddOutParameter(dbCommand, "@TotalRecords", DbType.Int32, 4);
         
         RejectedStockNewCollection rejectedStockNewCollection = new RejectedStockNewCollection();
         using (IDataReader reader = database.ExecuteReader(dbCommand))
         {
             while (reader.Read())
             {
                 RejectedStockNew rejectedStockNew = CreateRejectedStockNewFromReader(reader);
                 rejectedStockNewCollection.Add(rejectedStockNew);
             }
             reader.Close();
         }
         totalRecords = (int)database.GetParameterValue(dbCommand, "@TotalRecords");
         return rejectedStockNewCollection;
     }
     catch (Exception ex)
     {
         // log this exception
         log4net.Util.LogLog.Error(ex.Message, ex);
         // wrap it and rethrow
         throw new ApplicationException(SR.DataAccessGetRejectedStockNewListException, ex);
     }
 }