public PayrollCalculator(IEmployee employee) { if (employee == null) { throw new ArgumentNullException("employee"); } this.employee = employee; this.timeSheetPersistance = new TimeSheetPersistance(); this.salaryPersistance = new SalaryPersistance(); }
public PayrollCalculator() { this.timeSheetPersistance = new TimeSheetPersistance(); }