Subversion Repositories SmartDukaan

Rev

Rev 26522 | Rev 28653 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
26522 amit.gupta 1
package com.spice.profitmandi.dao.cart;
2
 
3
import org.springframework.stereotype.Service;
4
 
5
@Service
6
public interface CartService {
7
	CartModel addToCart(int cartId, int itemId, int quantity, float sellingPrice);
28166 tejbeer 8
 
26522 amit.gupta 9
	CartModel removeFromCart(int cartId, int itemId);
28166 tejbeer 10
 
26522 amit.gupta 11
	void clearCart(int cartId);
28166 tejbeer 12
 
26522 amit.gupta 13
	CartModel getCart(int cartId);
28166 tejbeer 14
 
15
	void addShoppingBag(int cartId, long qty);
16
 
26522 amit.gupta 17
}