示例#1
0
        public void ActualizaTolerancia(EntityConnectionStringBuilder connection, Tolerancia tol)
        {
            var context = new samEntities(connection.ToString());

            context.UPDATE_tolerancia_MDL(tol.WERKS,
                                          tol.TOLERANCIA);
        }
示例#2
0
        public void IngresarToleranciaPedido(EntityConnectionStringBuilder connection, Tolerancia tot)
        {
            var context = new samEntities(connection.ToString());

            context.INSERT_tolerancia_pedidos_MDL(tot.WERKS,
                                                  tot.EBELN,
                                                  tot.EBELP,
                                                  tot.TOLERANCIA);
        }