Ejemplo n.º 1
0
    private bool verificarStock(int idProducto, int cantidadPedida)
    {
        int stockActual = GestorProductos.getStock(idProducto);

        if (stockActual >= cantidadPedida)
        {
            return(true);
        }
        else
        {
            return(false);
        }
    }