コード例 #1
0
 public List<CargoUpec> listarCargoU() {
   return control.findCargoUpecEntities();
 }
コード例 #2
0
 public void modificar(CargoUpec obj) throws PreexistingEntityException, Exception {
   control.edit(obj);
 }
コード例 #3
0
 public void eliminar(Integer id) throws NonexistentEntityException {
   control.destroy(id);
 }
コード例 #4
0
 public void adicionar(CargoUpec obj) throws PreexistingEntityException, Exception {
   control.create(obj);
 }