Computer Science, asked by roshananand, 1 year ago

Develop a Java program for shopping cart. Answer it fast!!!

Answers

Answered by Albert01
2


1

2

3

4

5

6

7

8

public interface IOrder {

    boolean addProduct(Product p);

    boolean removeProduct(String pid) throws ProductNotFoundException;

    Collection getCartDetails();

    Product getProductFromCart(String pid) throws ProductNotFoundException;

    int productCount();

  double getCartPrice();

}

Similar questions