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