[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting Account
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2010-03-28 13:45:30
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv10401/a1_Financial/a2_Accounting/h5_Reporting Modified Files: AccountReport.cs Log Message: Old commented out code has been removed Index: AccountReport.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/AccountReport.cs,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** AccountReport.cs 10 Dec 2008 19:27:19 -0000 1.24 --- AccountReport.cs 28 Mar 2010 13:45:21 -0000 1.25 *************** *** 47,50 **** --- 47,51 ---- { private Account account; + private HistoricalMarketValueProvider historicalMarketValueProvider; private IDateTimeSelectorForEquityLine dateTimeSelectorForEquityLine; *************** *** 382,392 **** this.setDetailedDataTable( numDaysForInterval ); this.transactionTable = new Tables.Transactions( reportName , detailedDataTable ); - // this.transactionTable = getTransactionTable( reportName , detailedDataTable ); this.roundTrades = new Tables.RoundTrades( reportName , this.transactionTable ); this.equity = new Tables.Equity( reportName , detailedDataTable ); if ( benchmark != "" ) this.setBenchmarkEquityLine(); - //this.equity = getEquity( reportName , detailedDataTable ); - //this.summary = getSummary( reportName ); this.summary = new Tables.Summary( this , historicalMarketValueProvider ); this.statisticsSummary = new Tables.StatisticsSummary( this, historicalMarketValueProvider ); --- 383,390 ---- |