using GetStock.Adapters.Model; namespace GetStock.Adapters { public interface IStockDB { Task GetStockValueAsync(string stockId); } }