在操作上创建如下
@Action
public EmployeeVM newEmployee(final String name) {
employeeRepository.create(name);
return this;
}
在操作上创建如下
@Action
public EmployeeVM newEmployee(final String name) {
employeeRepository.create(name);
return this;
}