You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
743 B
20 lines
743 B
using Microsoft.Extensions.Caching.Memory;
|
|
using SDKAdapter.Model;
|
|
using System;
|
|
using Yitter.IdGenerator;
|
|
|
|
namespace Binance.TradeRobot.Business
|
|
{
|
|
public class BaseSpotOrderPublishTradeBusiness : BaseBusiness
|
|
{
|
|
public BaseSpotOrderPublishTradeBusiness(IFreeSql fsql,
|
|
NLogManager logManager,
|
|
IIdGenerator idGenerator,
|
|
IMemoryCache memoryCache) : base(fsql, logManager, idGenerator, memoryCache) { }
|
|
|
|
public virtual void OnSpotOrderPublish(SpotOrderTradePublishInfo spotOrderTradePublishInfo)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|
|
|