[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/Transactions Transac
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-09-29 21:15:00
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/Transactions In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14039/a2_Accounting/Transactions Modified Files: TransactionHistory.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: TransactionHistory.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/Transactions/TransactionHistory.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TransactionHistory.cs 6 Feb 2005 18:23:30 -0000 1.2 --- TransactionHistory.cs 29 Sep 2008 21:14:43 -0000 1.3 *************** *** 71,77 **** // } ! public void Add( EndOfDayTransaction transaction ) { ! base.MultiAdd( transaction.EndOfDayDateTime.DateTime , transaction ); } --- 71,77 ---- // } ! public void Add( TimedTransaction transaction ) { ! base.MultiAdd( transaction.DateTime , transaction ); } |