public Object dmlAgregar(SIT_SOL_MODOENTREGA oDatos) { iSecuencia = SecuenciaDML("SEC_SIT_SOL_MODOENTREGA"); String sSQL = " INSERT INTO SIT_SOL_MODOENTREGA( megmostrar, megdescripcion, megclave) VALUES ( :P0, :P1, :P2) "; EjecutaDML(sSQL, oDatos.megmostrar, oDatos.megdescripcion, iSecuencia); return(iSecuencia); }
public SIT_SOL_MODOENTREGA dmlSelectID(SIT_SOL_MODOENTREGA oDatos) { String sSQL = " SELECT * FROM SIT_SOL_MODOENTREGA WHERE megclave = :P0 "; return(CrearListaMDL <SIT_SOL_MODOENTREGA>(ConsultaDML(sSQL, oDatos.megclave) as DataTable)[0]); }
public int dmlBorrar(SIT_SOL_MODOENTREGA oDatos) { String sSQL = " DELETE FROM SIT_SOL_MODOENTREGA WHERE megclave = :P0 "; return((int)EjecutaDML(sSQL, oDatos.megclave)); }
public int dmlEditar(SIT_SOL_MODOENTREGA oDatos) { String sSQL = " UPDATE SIT_SOL_MODOENTREGA SET megmostrar = :P0, megdescripcion = :P1 WHERE megclave = :P2 "; return((int)EjecutaDML(sSQL, oDatos.megmostrar, oDatos.megdescripcion, oDatos.megclave)); }