using System.Collections.Generic;
namespace VideoGameQuotes.Api.Search {
///
/// Exposes an interface to perform a full-text search
///
public interface ISearcher {
///
/// Searches for records based on the given search query
///
/// The search term(s) to search for
/// The maximum number of results to return (0 is unlimited); the default is 10
IEnumerable> Search(string query, int maxResults = 10);
}
}