mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 19:57:07 +02:00
11 lines
248 B
C#
11 lines
248 B
C#
|
|
using Microsoft.Plugin.Indexer.SearchHelper;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace Microsoft.Plugin.Indexer.Interface
|
|||
|
|
{
|
|||
|
|
public interface ISearch
|
|||
|
|
{
|
|||
|
|
List<OleDBResult> Query(string connectionString, string sqlQuery);
|
|||
|
|
}
|
|||
|
|
}
|