Пример #1
0
 /// <summary>
 /// Skips (PageIndex) pages and returns the next (PageSize) records from the dbo.Resource table
 /// </summary>
 /// <param name="filterInstance">An instance of ResourceGetPageByModule_Key_ValueFilter that defines filtering options.</param>
 /// <param name="db">Db object on which the command will be executed</param>
 /// <param name="_totalRowCount">Total number of rows returned by the specified filter.</param>
 /// <returns>A list of Resource instances.</returns>
 /// <remarks>This method never returns null,
 ///	if no records are available, length of the list will be 0.</remarks>
 public static List <Resource> GetPageByModule_Key_Value(ResourceGetPageByModule_Key_ValueFilter filterInstance, Db db, out int _totalRowCount)
 {
     return(db.ResourceGetPageByModule_Key_Value(filterInstance, out _totalRowCount));
 }
Пример #2
0
        /// <summary>
        /// Skips (PageIndex) pages and returns the next (PageSize) records from the dbo.Resource table
        /// </summary>
        /// <param name="filterInstance">An instance of ResourceGetPageByModule_Key_ValueFilter that defines filtering options.</param>
        /// <param name="_totalRowCount">Total number of rows returned by the specified filter.</param>
        /// <returns>A list of Resource instances.</returns>
        /// <remarks>This method never returns null,
        ///	if no records are available, length of the list will be 0.</remarks>
        public static List <Resource> GetPageByModule_Key_Value(ResourceGetPageByModule_Key_ValueFilter filterInstance, out int _totalRowCount)
        {
            Db db = new Db(DbServices.ConnectionString);

            return(GetPageByModule_Key_Value(filterInstance, db, out _totalRowCount));
        }