iWOWS/WolfOfWallStreet/Services/Contracts/IBrokerService.cs

15 lines
324 B
C#
Raw Normal View History

2021-01-15 18:51:25 +03:30
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);
}
}