public void IngresaTiposSolped(EntityConnectionStringBuilder connection, Tipos_Solped ts)
        {
            var context = new samEntities(connection.ToString());

            context.INSERT_tipo_solped_MDL(ts.WERKS,
                                           ts.BSART,
                                           ts.MTART,
                                           ts.BATXT_ES,
                                           ts.BATXT_EN);
        }
        public void VaciarTiposSolped(EntityConnectionStringBuilder connection, Tipos_Solped ts)
        {
            var context = new samEntities(connection.ToString());

            context.DELETE_tipo_solped_MDL(ts.WERKS);
        }