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