15 lines
425 B
C#
15 lines
425 B
C#
using System.Collections.Generic;
|
|
using YLErp.DBModels;
|
|
using YLErp.Modules.CalculationModule.Abstract;
|
|
|
|
namespace YLErp.Helpers
|
|
{
|
|
class InnerExchangeTradeCommissionCalc : IExchangeTradeCommissionCalc
|
|
{
|
|
public ITradeCommissionCalcResult GetTradeCommission(IEnumerable<ExchangeTrade> tradeList, bool isActualTrade = true)
|
|
{
|
|
return new InnerTradeCommissionResult(null);
|
|
}
|
|
}
|
|
}
|