using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using WolfOfWallStreet.Models; using WolfOfWallStreet.Models.MofidOnline; namespace WolfOfWallStreet.Services.Contracts { public interface IMofidOnlineService { Task SendOrder(MofidOnlineOrder draft); Task GetSymbolOrderBase(Symbol symbol, long stockPrice); } }