public void ActualizaReporteNotificaciones(EntityConnectionStringBuilder connection, ReporteNotificaciones um)
        {
            var context = new samEntities(connection.ToString());

            if (um.FOLIO_SAP.Equals(""))
            {
                context.UPDATE_reporte_notificaciones_reportes_MDL(um.FOLIO_SAM,
                                                                   um.PROCESADO,
                                                                   um.ERROR);
            }
            else
            {
                context.DELETE_reporte_notificaciones_reporte_MDL(um.FOLIO_SAM);
            }
        }