public virtual ContentParameterCollection GetContentParameterList(ContentParameterColumns orderBy, string orderDirection, int page, int pageSize, out int totalRecords)
 {            
     try
     {
         Database database = DatabaseFactory.CreateDatabase("CustommerServiceConnection");
         DbCommand dbCommand = database.GetStoredProcCommand("spContentParameterGetList");
         
         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);
         
         ContentParameterCollection contentParameterCollection = new ContentParameterCollection();
         using (IDataReader reader = database.ExecuteReader(dbCommand))
         {
             while (reader.Read())
             {
                 ContentParameter contentParameter = CreateContentParameterFromReader(reader);
                 contentParameterCollection.Add(contentParameter);
             }
             reader.Close();
         }
         totalRecords = (int)database.GetParameterValue(dbCommand, "@TotalRecords");
         return contentParameterCollection;
     }
     catch (Exception ex)
     {
         // log this exception
         log4net.Util.LogLog.Error(ex.Message, ex);
         // wrap it and rethrow
         throw new ApplicationException(SR.DataAccessGetContentParameterListException, ex);
     }
 }
 public virtual ContentParameterCollection GetContentParameterList(ContentParameterColumns orderBy, string orderDirection)
 {            
     int totalRecords = 0;
     return GetContentParameterList(orderBy, orderDirection, 0, 0, out totalRecords);
 }
 public static ContentParameterCollection GetContentParameterList(ContentParameterColumns orderBy, string orderDirection)
 {            
     try
     {
         ContentParameterDAO contentParameterDAO = new ContentParameterDAO();
         return contentParameterDAO.GetContentParameterList(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.BusinessGetContentParameterListException, ex);
     }
 }