[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting Account.cs,1.2,1.3
Brought to you by:
glauco_1
|
From: <gla...@us...> - 2003-11-24 19:43:35
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting
In directory sc8-pr-cvs1:/tmp/cvs-serv32358/b4_Business/a1_Financial/a2_Accounting
Modified Files:
Account.cs
Log Message:
Some commented code has been cleaned up.
Index: Account.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/Account.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Account.cs 2 Nov 2003 18:29:47 -0000 1.2
--- Account.cs 24 Nov 2003 19:43:31 -0000 1.3
***************
*** 71,77 ****
public Account( string accountName ) : base ( accountName )
{
cashAmount = 0;
accountStrategy = new AccountStrategy( this );
! // accountReport = new AccountReport( this );
}
--- 71,86 ----
public Account( string accountName ) : base ( accountName )
{
+ this.initialize();
+ }
+
+ private void initialize()
+ {
cashAmount = 0;
accountStrategy = new AccountStrategy( this );
! }
!
! public Account() : base ( "account" )
! {
! this.initialize();
}
|