Esempio n. 1
0
 public boolean save(Object o) {
   return tableDB.save(o);
 }
Esempio n. 2
0
 public ArrayList getAll() {
   return tableDB.getAll();
 }
Esempio n. 3
0
 public boolean remove(int id) {
   return tableDB.remove(id);
 }
Esempio n. 4
0
 public Object get(int id) {
   return tableDB.get(id);
 }
Esempio n. 5
0
 public boolean saveAll(ArrayList a) {
   return tableDB.saveAll(a);
 }