/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package cobain; /** * * @author Administrator */ public class OperasiKeranjang { public static void addShoppingCartItem(Keranjang k, Inventori inv, Barang item) { inv.removeItem(item); k.addItem(item); } public static void removeShoppingCartItem(Keranjang k, Inventori inv, Barang item) { k.removeItem(item); inv.addItem(item); } }