public void ForeachAction(EmployeeAction action)
 {
     foreach (Employee employee in _employees)
     {
         action.Invoke(employee);
     }
 }