aboutsummaryrefslogtreecommitdiff
path: root/RhSolutions.AddIn/Services/IDatabaseClient.cs
blob: e275dec7666450d828065ac6f793315c1792e016 (plain)
1
2
3
4
5
6
7
8
9
using System.Threading.Tasks;

namespace RhSolutions.Services
{
    public interface IDatabaseClient
    {
        public Task<object> GetProduct(string line);
    }
}