コード例 #1
0
ファイル: InstalmentManager.cs プロジェクト: dreamsql/Outter
 protected InstalmentBase(InstalmentPayOffParameter parameter)
 {
     this.Orders       = parameter.Orders;
     this.Account      = parameter.Account;
     this.Instrument   = parameter.Instrument;
     this.BuyPrice     = parameter.BuyPrice;
     this.SellPric     = parameter.SellPrice;
     this.TradeDay     = parameter.TradeDay;
     this.CurrencyRate = Settings.Setting.Default.GetCurrencyRate(this.Instrument.CurrencyId, this.Account.IsMultiCurrency ? this.Instrument.CurrencyId : this.Account.Setting().CurrencyId);
 }
コード例 #2
0
ファイル: InstalmentManager.cs プロジェクト: dreamsql/Outter
 internal InstalmentManager(InstalmentPayOffParameter instalmentPayOffParameter)
     : base(instalmentPayOffParameter)
 {
 }