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); } }