[Quantproject-developers] QuantProject/b4_Business/a07_DataProviders HistoricalMarketValueProvider.
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-11-20 20:50:05
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a07_DataProviders In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv31656/b4_Business/a07_DataProviders Modified Files: HistoricalMarketValueProvider.cs Log Message: the method public bool WasExchanged( string ticker , DateTime dateTime ); is now abstract Index: HistoricalMarketValueProvider.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a07_DataProviders/HistoricalMarketValueProvider.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** HistoricalMarketValueProvider.cs 29 Sep 2008 21:02:42 -0000 1.1 --- HistoricalMarketValueProvider.cs 20 Nov 2008 20:49:58 -0000 1.2 *************** *** 60,70 **** /// <param name="dateTime"></param> /// <returns></returns> ! public bool WasExchanged( string ticker , ! DateTime dateTime ) ! { ! bool wasExchanged = ! HistoricalQuotesProvider.WasExchanged( ticker , dateTime ); ! return wasExchanged; ! } #region GetQuotes --- 60,78 ---- /// <param name="dateTime"></param> /// <returns></returns> ! // public bool WasExchanged( string ticker , ! // DateTime dateTime ) ! // { ! // bool wasExchanged = ! // HistoricalQuotesProvider.WasExchanged( ticker , dateTime ); ! // return wasExchanged; ! // } ! ! /// <summary> ! /// True iif the given ticker was traded at the given DateTime ! /// </summary> ! /// <param name="ticker"></param> ! /// <param name="dateTime"></param> ! /// <returns></returns> ! public abstract bool WasExchanged( string ticker , DateTime dateTime ); #region GetQuotes |