15 lines
324 B
C#
15 lines
324 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WolfOfWallStreet.Services.Contracts
|
|
{
|
|
public interface IBrokerService
|
|
{
|
|
Task SendOrder();
|
|
Task<T> GetSymbolInfo<T>(string isin);
|
|
Task<T> GetSymbolOrderBase<T>(string isin);
|
|
}
|
|
}
|