/// <summary> /// Returns the total number of log entries 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 log entries in the database /// </returns> public static int Count(int StartRow, int PageSize) { return(LogDB.Count(StartRow, PageSize)); }