Exemple #1
0
        /// <summary>
        /// Returns the total number of comments in the database
        /// </summary>
        /// <param name="StartRow">
        /// The start position in the result set to retrieve records from
        /// </param>
        /// <param name="PageSize">
        /// The maximum number of records to retrieve from position StartRow
        /// </param>
        /// <returns>
        /// Returns the total number of comments in the database
        /// </returns>

        public static int Count(int StartRow, int PageSize)
        {
            return(CommentDB.Count(StartRow, PageSize));
        }