[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting Account.cs,1.3,1.4
Brought to you by:
glauco_1
|
From: <gla...@us...> - 2003-11-28 15:32:13
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting
In directory sc8-pr-cvs1:/tmp/cvs-serv2113/b4_Business/a1_Financial/a2_Accounting
Modified Files:
Account.cs
Log Message:
I've used better local variable names
Index: Account.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/Account.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Account.cs 24 Nov 2003 19:43:31 -0000 1.3
--- Account.cs 28 Nov 2003 15:32:10 -0000 1.4
***************
*** 180,194 ****
public AccountReport CreateReport( string reportName ,
! int numDaysForInterval , ExtendedDateTime extendedDateTime )
{
AccountReport accountReport = new AccountReport( this );
! return accountReport.Create( reportName , numDaysForInterval , extendedDateTime );
}
public AccountReport CreateReport( string reportName ,
! int numDaysForInterval , ExtendedDateTime extendedDateTime , string buyAndHoldTicker )
{
AccountReport accountReport = new AccountReport( this );
return accountReport.Create( reportName , numDaysForInterval ,
! extendedDateTime , buyAndHoldTicker );
}
public void Serialize( string filePathAndName )
--- 180,194 ----
public AccountReport CreateReport( string reportName ,
! int numDaysForInterval , ExtendedDateTime endDateTime )
{
AccountReport accountReport = new AccountReport( this );
! return accountReport.Create( reportName , numDaysForInterval , endDateTime );
}
public AccountReport CreateReport( string reportName ,
! int numDaysForInterval , ExtendedDateTime endDateTime , string buyAndHoldTicker )
{
AccountReport accountReport = new AccountReport( this );
return accountReport.Create( reportName , numDaysForInterval ,
! endDateTime , buyAndHoldTicker );
}
public void Serialize( string filePathAndName )
|