1 2 3 4 5 6 7 8 9 10 11
using RhSolutions.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace RhSolutions.Services { public interface IDatabaseClient { public Task<IEnumerable<Product>> GetProducts(string query); } }