Ejemplo n.º 1
0
 public void SetupTests()
 {
     _deductionCalculator = new EmployeeDeductionCalculator(_calculatorSettings);
 }
Ejemplo n.º 2
0
 public EmployeeController()
 {
     var defaultSettings = new DeductionCalculatorSettings();
     calculator = new EmployeeDeductionCalculator(defaultSettings);
 }