public String destroy() { try { presentacionService.delete(presentacionId); success(); } catch (HibernateException ex) { failure(ex); } return JSON; }
public String edit() { try { presentacionService.updatePresentacion(presentacionId, cantidad, nombre, unidad); success(); } catch (HibernateException ex) { failure(ex); } catch (Exception ex) { failure(ex); } return JSON; }
public Collection<Presentacion> getPresentaciones() { if (presentaciones == null) { presentaciones = presentacionService.getPresentacionesByTipo(tipoPresentacionId); } return presentaciones; }
public String create() { presentacionService.createNewPresentacion(tipoPresentacionId, cantidad, unidad, nombre); success(); return JSON; }