public void ActualizaTolerancia(EntityConnectionStringBuilder connection, Tolerancia tol) { var context = new samEntities(connection.ToString()); context.UPDATE_tolerancia_MDL(tol.WERKS, tol.TOLERANCIA); }
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); }