16 lines
434 B
C#
16 lines
434 B
C#
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<MofidOnlineOrderResult> SendOrder(MofidOnlineOrder draft);
|
|
Task<MofidOnlineSymbol> GetSymbolOrderBase(Symbol symbol, long stockPrice);
|
|
}
|
|
}
|