aboutsummaryrefslogtreecommitdiff
path: root/RhSolutions.AddIn/Services/IDatabaseClient.cs
blob: 36994c9eb22b58a675e4c327f4146611fea13e52 (plain)
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);
    }
}