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

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