using Knoks.Core.Entities; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Knoks.Core.Logic.Interfaces { public interface IExchange { Task> GetMarkets(); Task GetTickerData(TickerInfo ticker, DateTime start, DateTime end); //void GetTickerLive(IEnumerable tickers, IWebSocketClient client , Action action); //void AddTicker(Ticker tickers, IWebSocketClient client); //void RemoveTicker(Ticker tickers, IWebSocketClient client); } }