[Quantproject-developers] QuantProject/b5_Presentation/Reporting/WindowsForm Report.cs,1.6,1.7
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2005-02-13 12:15:52
|
Update of /cvsroot/quantproject/QuantProject/b5_Presentation/Reporting/WindowsForm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5238/b5_Presentation/Reporting/WindowsForm Modified Files: Report.cs Log Message: - a new constructor has been added: it takes an AccountReport as argument - the Import method has been commented out Index: Report.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b5_Presentation/Reporting/WindowsForm/Report.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Report.cs 12 Feb 2005 19:10:18 -0000 1.6 --- Report.cs 13 Feb 2005 12:15:42 -0000 1.7 *************** *** 47,50 **** --- 47,55 ---- this.historicalQuoteProvider = historicalQuoteProvider; } + public Report( AccountReport accountReport ) + { + this.accountReport = accountReport; + this.account = this.accountReport.Account; + } /// <summary> *************** *** 82,93 **** this.accountReport = null; } ! ! /// <summary> ! /// Imports an existing account report ! /// </summary> ! public void Import(AccountReport accountReportToBeImported) ! { ! this.accountReport = accountReportToBeImported; ! } } } --- 87,98 ---- this.accountReport = null; } ! ! // /// <summary> ! // /// Imports an existing account report ! // /// </summary> ! // public void Import(AccountReport accountReportToBeImported) ! // { ! // this.accountReport = accountReportToBeImported; ! // } } } |