2020-08-06 10:10:44 -07:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
2020-06-18 15:42:28 -07:00
|
|
|
|
using System.Collections.Generic;
|
2020-08-06 10:10:44 -07:00
|
|
|
|
using Microsoft.Plugin.Indexer.SearchHelper;
|
2020-06-18 15:42:28 -07:00
|
|
|
|
|
2020-07-30 16:39:47 -07:00
|
|
|
|
namespace Microsoft.Plugin.Indexer
|
2020-06-18 15:42:28 -07:00
|
|
|
|
{
|
|
|
|
|
|
public interface ISearch
|
|
|
|
|
|
{
|
|
|
|
|
|
List<OleDBResult> Query(string connectionString, string sqlQuery);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|