public class UtentiController extends MultiActionController {
public ModelAndView elenco(HttpServletRequest req, HttpServletResponse res) throws Exception {
CentroLight centro = centriManager.getInfoCentro(WebUtils.getIdCentro(req));
Page page = WebUtils.getPagina(req, centro.getNumeroDonatori(), utentiManager.getNumeroUtentiPerPagina());
ModelAndView mav = new ModelAndView("donors/elencoDonatori");
mav.addObject(Constant.ELENCO_DONATORI, utentiManager.getUtentiCentro(centro.getId(), page.getPagina()));
mav.addObject(Constant.PAGE_VO, page);
mav.addObject(Constant.CENTRO_DONAZIONE, centro);
return mav;
}