Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package e1;
- public interface EstadoOrder {
- public void anadirProducto(Order order, ProductoCantidad productoCantidad);
- public void eliminarProducto(Order order, ProductoCantidad productoCantidad);
- public void siguienteEstado(Order order);
- public void anteriorEstado(Order order);
- public void modificarCantidadProducto(Order order, ProductoCantidad productoCantidad, int nuevaCantidad);
- public void pagar(Order order);
- public void cancelar(Order order);
- public void screenInfo(Order order);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement