Exemple #1
0
 public bool update_persona(persona obj)
 {
     Transaction[] list = new Transaction[1];
     list[0] = new Transaction("PR_UPDATE_PERSONA", getParameters(obj));
     return(conexion.realizarTransaccion(list));
 }
Exemple #2
0
 public bool insert_persona(persona obj)
 {
     Transaction[] list = new Transaction[1];
     list[0] = new Transaction("PR_INSERT_PERSONA", getParameters(obj));
     return(conexion.realizarTransaccion(list));
 }