using RhSolutions.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace RhSolutions.Services { public interface IDatabaseClient { public Task> GetProducts(string query); } }