public void IngresarTextoCSV(EntityConnectionStringBuilder connection, TextoCabeceraSolped txc)
        {
            var context = new samEntities(connection.ToString());

            context.texto_cabecera_solped_vis_MDL(txc.FOLIO_SAM,
                                                  txc.FOLIO_SAP,
                                                  txc.INDICE,
                                                  txc.TDFORMAT,
                                                  txc.TDLINE);
        }
        public void VaciarTextoCSV(EntityConnectionStringBuilder connection, TextoCabeceraSolped txc)
        {
            var context = new samEntities(connection.ToString());

            context.DELETE_texto_cabecera_solped_vis_MDL(txc.FOLIO_SAP);
        }