[Quantproject-developers] QuantProject/b4_Business/a07_DataProviders TickerNotExchangedException.cs
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-09-29 21:23:04
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a07_DataProviders In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv19753/b4_Business/a07_DataProviders Modified Files: TickerNotExchangedException.cs Log Message: The new revision moves toward an intraday enabled framework. EndOfDayDate time has been removed, DateTime is used now. The code has been changed accordingly. Index: TickerNotExchangedException.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a07_DataProviders/TickerNotExchangedException.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TickerNotExchangedException.cs 27 Feb 2008 21:21:21 -0000 1.1 --- TickerNotExchangedException.cs 29 Sep 2008 21:22:45 -0000 1.2 *************** *** 33,37 **** { private string ticker; ! private EndOfDayDateTime endOfDayDateTime; public override string Message { --- 33,37 ---- { private string ticker; ! private DateTime dateTime; public override string Message { *************** *** 40,51 **** return "Missing quote for ticker " + this.ticker + " for end of day date time " + ! this.endOfDayDateTime.Description; } } public TickerNotExchangedException( string ticker , ! EndOfDayDateTime endOfDayDateTime ) { this.ticker = ticker; ! this.endOfDayDateTime = endOfDayDateTime; } } --- 40,51 ---- return "Missing quote for ticker " + this.ticker + " for end of day date time " + ! this.dateTime.ToString(); } } public TickerNotExchangedException( string ticker , ! DateTime dateTime ) { this.ticker = ticker; ! this.dateTime = dateTime; } } |