public SIT_RESP_RREVISION dmlSelectID(SIT_RESP_RREVISION oDatos) { String sSQL = " SELECT * FROM SIT_RESP_RREVISION WHERE repclave = :P0 "; return(CrearListaMDL <SIT_RESP_RREVISION>(ConsultaDML(sSQL, oDatos.repclave) as DataTable)[0]); }
public int dmlEditar(SIT_RESP_RREVISION oDatos) { // NO SE IMPLEMENTA PORQUE TODO ES LLAVE throw new NotImplementedException(); }
public int dmlBorrar(SIT_RESP_RREVISION oDatos) { String sSQL = " DELETE FROM SIT_RESP_RREVISION WHERE repclave = :P0 "; return((int)EjecutaDML(sSQL, oDatos.repclave)); }
public Object dmlAgregar(SIT_RESP_RREVISION oDatos) { String sSQL = " INSERT INTO SIT_RESP_RREVISION( repclave) VALUES ( :P0) "; return(EjecutaDML(sSQL, oDatos.repclave)); }