Exemple #1
0
        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]);
        }
Exemple #2
0
 public int dmlEditar(SIT_RESP_RREVISION oDatos)
 {
     // NO SE IMPLEMENTA PORQUE TODO ES LLAVE
     throw new NotImplementedException();
 }
Exemple #3
0
        public int dmlBorrar(SIT_RESP_RREVISION oDatos)
        {
            String sSQL = " DELETE FROM SIT_RESP_RREVISION WHERE  repclave = :P0 ";

            return((int)EjecutaDML(sSQL, oDatos.repclave));
        }
Exemple #4
0
        public Object dmlAgregar(SIT_RESP_RREVISION oDatos)
        {
            String sSQL = " INSERT INTO SIT_RESP_RREVISION( repclave) VALUES (  :P0) ";

            return(EjecutaDML(sSQL, oDatos.repclave));
        }