Esempio n. 1
0
 public AccountLedgersController(IAccountLedgerDataService accountLedgerData,
                                 IAccountDataService accountData,
                                 IFiscalYearDataService fiscalYearData)
 {
     _accountLedgerData = accountLedgerData;
     _accountData       = accountData;
     _fiscalYearData    = fiscalYearData;
 }
Esempio n. 2
0
 public VouchersController(IVoucherDataService voucherData,
                           IFiscalYearDataService fiscalYearData,
                           IAccountDataService accountData,
                           IAccountLedgerDataService accountLedgerData)
 {
     _voucherData       = voucherData;
     _fiscalYearData    = fiscalYearData;
     _accountData       = accountData;
     _accountLedgerData = accountLedgerData;
 }