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