Example #1
0
 public ProfitAndLoss(AccountingPeriod accountingPeriod, ChartOfAccounts chartOfAccounts)
 {
     _accountingPeriod = accountingPeriod;
     _chartOfAccounts  = chartOfAccounts;
     _current          = new AccountCollection();
 }
Example #2
0
 public TrialBalance(ChartOfAccounts chartOfAccounts)
 {
     _chartOfAccounts = chartOfAccounts;
     _current         = new AccountCollection();
 }