using System.Threading.Tasks; namespace RhSolutions.Services { public interface IDatabaseClient { public Task GetProduct(string line); } }