BVNetwork.NotFound.Core.Data.DataAccessBaseEx.GetTotalNumberOfSuggestions C# (CSharp) Method

GetTotalNumberOfSuggestions() public method

public GetTotalNumberOfSuggestions ( ) : DataSet
return System.Data.DataSet
        public DataSet GetTotalNumberOfSuggestions()
        {
            string sqlCommand = string.Format("SELECT COUNT(DISTINCT [OldUrl]) FROM {0}", REDIRECTSTABLE);
            return ExecuteSQL(sqlCommand, null);
        }