Develop a Java program for shopping cart. Answer it fast!!!
Answers
Answered by
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