using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using WolfOfWallStreet.Models; using WolfOfWallStreet.Models.OnlinePlus; namespace WolfOfWallStreet.Services.Contracts { public interface IOnlinePlusService { Task SendOrder(OnlinePlusOrder draft); Task GetSymbolOrderBase(Symbol symbol, long stockPrice); Task GetAccounTask(string cookiesOrAuth); } }