Rev 28166 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.cart;import org.springframework.stereotype.Service;@Servicepublic interface CartService {CartModel addToCart(int cartId, int itemId, int quantity, float sellingPrice);CartModel removeFromCart(int cartId, int itemId);void clearCart(int cartId);CartModel getCart(int cartId);}