return result;
}
protected ModelAndView onSubmit(Object command, BindException errors) throws Exception {
EmployeesListForm form = (EmployeesListForm) command;
Office office = form.getOffice();
Collection<IEmployee> employees = store.getEmployeesByOffice(office);
Map model = new HashMap(3);
model.put("employees", employees);