Esempio n. 1
0
 public boolean modificar(T item) throws AppException {
   return (Boolean) modificar.exec(item);
 }
Esempio n. 2
0
 public boolean borrar(T item) throws AppException {
   return (Boolean) borrar.exec(item);
 }
Esempio n. 3
0
 public boolean registrar(T item) throws AppException {
   return (Boolean) registrar.exec(item);
 }