ProductHandler ph = new ProductHandler(req);
return ph.processEditProductRequest();
}
else if (formId.equals(FormName.REGISTER.getId())) {
EmployeeHandler eh = new EmployeeHandler(req);
return eh.processAddEmployeeRequest();
}
else if (formId.equals(FormName.DELETE_EMPLOYEE.getId())) {
EmployeeHandler eh = new EmployeeHandler(req);
return eh.processDeleteEmployeeRequest();
}