Example #1
0
        public void IngresaCecos(EntityConnectionStringBuilder connection, Cecos ce)
        {
            var context = new samEntities(connection.ToString());

            context.INSERT_cecos_MDL(ce.BUKRS,
                                     ce.KSTAR,
                                     ce.LTEXT,
                                     ce.KOSTL,
                                     ce.KTEXT_ES);
        }
Example #2
0
        public void VaciarCecos(EntityConnectionStringBuilder connection, Cecos ce)
        {
            var context = new samEntities(connection.ToString());

            context.DELETE_cecos_MDL(ce.BUKRS);
        }