public void SetupTests()
 {
     _deductionCalculator = new EmployeeDeductionCalculator(_calculatorSettings);
 }
示例#2
0
 public EmployeeController()
 {
     var defaultSettings = new DeductionCalculatorSettings();
     calculator = new EmployeeDeductionCalculator(defaultSettings);
 }