[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a3_Ordering OrderManager.cs,1.1.1.1,
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-08-23 22:36:59
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a3_Ordering In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4406/b4_Business/a1_Financial/a3_Ordering Modified Files: OrderManager.cs Log Message: QuantProject.Data.DataProvider has been replaced by QuantProject.Data.DataProviders.HistoricalDataProvider Index: OrderManager.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a3_Ordering/OrderManager.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** OrderManager.cs 13 Oct 2003 21:59:06 -0000 1.1.1.1 --- OrderManager.cs 23 Aug 2004 22:36:48 -0000 1.2 *************** *** 24,28 **** using System.Collections; using QuantProject.ADT; ! using QuantProject.Data; using QuantProject.Business.Financial.Accounting; --- 24,28 ---- using System.Collections; using QuantProject.ADT; ! using QuantProject.Data.DataProviders; using QuantProject.Business.Financial.Accounting; *************** *** 43,47 **** public virtual double GetInstrumentPrice( Order order ) { ! return DataProvider.GetMarketValue( order.Instrument.Key , order.ExtendedDateTime ); } #region "GetTransaction" --- 43,47 ---- public virtual double GetInstrumentPrice( Order order ) { ! return HistoricalDataProvider.GetMarketValue( order.Instrument.Key , order.ExtendedDateTime ); } #region "GetTransaction" |