/// <summary> /// Returns the total count of users in the database. Useful /// for data pagination. /// </summary> /// <returns>The total number of users in the users table</returns> public static int GetTotalUserCount() { // Call into db to the count of the users table return(_userDao.GetCount(null)); }