Package Pedidos

Examples of Pedidos.SugerenciaDelChef


        return datosplatillos;
    }

    private void agregarRecomendacionAComanda() {
        recomendacionesDeChefPorApuntar += 1;
        SugerenciaDelChef sugerencia = new SugerenciaDelChef(baseDeDatos.obtenerPrecioDeRecomendacionDelChefDelDia());//TODO obtener el precio de la sugerencia del chef
        //TODO
        orden.addPlatillo(sugerencia);
        lblNumeroApuntadas.setText(idRecomendacionesDelChef.size() - 1 + recomendacionesDeChefPorApuntar + "");
    }
View Full Code Here

TOP

Related Classes of Pedidos.SugerenciaDelChef

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.