@RequestMapping(value = "submit.htm", method = RequestMethod.POST)
 public String submit(OfferTypeEntity formModel, BindingResult result, ModelMap m) {
   offerTypeManager.add(formModel);
   return "redirect:show.htm";
 }