public SIT_SOL_SOLICITUDTIPO dmlSelectID(SIT_SOL_SOLICITUDTIPO oDatos)
        {
            String sSQL = " SELECT * FROM SIT_SOL_SOLICITUDTIPO WHERE  sotclave = :P0 ";

            return(CrearListaMDL <SIT_SOL_SOLICITUDTIPO>(ConsultaDML(sSQL, oDatos.sotclave) as DataTable)[0]);
        }
        public int dmlEditar(SIT_SOL_SOLICITUDTIPO oDatos)
        {
            String sSQL = " UPDATE SIT_SOL_SOLICITUDTIPO SET  sotdescripcion = :P0 WHERE  sotclave = :P1 ";

            return((int)EjecutaDML(sSQL, oDatos.sotdescripcion, oDatos.sotclave));
        }
        public int dmlBorrar(SIT_SOL_SOLICITUDTIPO oDatos)
        {
            String sSQL = " DELETE FROM SIT_SOL_SOLICITUDTIPO WHERE  sotclave = :P0 ";

            return((int)EjecutaDML(sSQL, oDatos.sotclave));
        }
        public Object dmlAgregar(SIT_SOL_SOLICITUDTIPO oDatos)
        {
            String sSQL = " INSERT INTO SIT_SOL_SOLICITUDTIPO( sotdescripcion, sotclave) VALUES (  :P0, :P1) ";

            return(EjecutaDML(sSQL, oDatos.sotdescripcion, oDatos.sotclave));
        }