Example #1
0
 public PayRollTransactionControlModule()
 {
     unitOfWork = new UnitOfWork();
     PayRollTransactionControl   = new FluentPayRollTransactionControl(unitOfWork);
     PayRollEarnings             = new FluentPayRollEarnings(unitOfWork);
     PayRollDeductionLiabilities = new FluentPayRollDeductionLiabilities(unitOfWork);
 }
Example #2
0
 public PayRollTransactionsByEmployeeModule()
 {
     unitOfWork = new UnitOfWork();
     PayRollTransactionsByEmployee = new FluentPayRollTransactionsByEmployee(unitOfWork);
     PayRollEarnings             = new FluentPayRollEarnings(unitOfWork);
     PayRollDeductionLiabilities = new FluentPayRollDeductionLiabilities(unitOfWork);
     Employee = new FluentEmployee(unitOfWork);
 }
Example #3
0
 public PayRollEarningsModule()
 {
     unitOfWork      = new UnitOfWork();
     PayRollEarnings = new FluentPayRollEarnings(unitOfWork);
 }