using SharedLibraryCore.Helpers;
using System.Threading.Tasks;
namespace SharedLibraryCore.Interfaces
{
///
/// defines the capabilities of a resource queryier
///
/// Type of query
/// Type of result
public interface IResourceQueryHelper
{
///
/// queries a resource and returns the result of the query
///
/// query params
///
Task> QueryResource(QueryType query);
}
}