17 lines
498 B
C#
17 lines
498 B
C#
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<OnlinePlusOrderResult> SendOrder(OnlinePlusOrder draft);
|
|
Task<OnlinePlusSymbol> GetSymbolOrderBase(Symbol symbol, long stockPrice);
|
|
Task<OnlinePlusAccount> GetAccounTask(string cookiesOrAuth);
|
|
}
|
|
}
|