Пример #1
0
 public PayRollLedgerModule()
 {
     unitOfWork                    = new UnitOfWork();
     PayRollLedger                 = new FluentPayRollLedger(unitOfWork);
     PayRollPaySequence            = new FluentPayRollPaySequence(unitOfWork);
     PayRollTransactionsByEmployee = new FluentPayRollTransactionsByEmployee(unitOfWork);
     PayRollCurrentPaySequence     = new FluentPayRollCurrentPaySequence(unitOfWork);
 }
Пример #2
0
 public PayRollTransactionsByEmployeeModule()
 {
     unitOfWork = new UnitOfWork();
     PayRollTransactionsByEmployee = new FluentPayRollTransactionsByEmployee(unitOfWork);
     PayRollEarnings             = new FluentPayRollEarnings(unitOfWork);
     PayRollDeductionLiabilities = new FluentPayRollDeductionLiabilities(unitOfWork);
     Employee = new FluentEmployee(unitOfWork);
 }